We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I get this error:
The type initializer for 'Tensorflow.tf' threw an exception.
DllNotFoundException: Unable to load DLL 'tensorflow' or one of its dependencies: 找不到指定的模块。 (Exception from HRESULT: 0x8007007E)
---------- MY CODE---- using System; using Tensorflow;
namespace TFNet { class Program { static void Main(string[] args) { //Console.WriteLine("Hello World!"); var hello = tf.constant("Hello, TensorFlow!"); } } }
Nuget TensorFlow.NET(0.8.0) .NET Core 2.2
The text was updated successfully, but these errors were encountered:
Same issue as #252
Sorry, something went wrong.
Use nuget to install Microsoft.ML.TensorFlow.Redist
Microsoft.ML.TensorFlow.Redist
No branches or pull requests
I get this error:
The type initializer for 'Tensorflow.tf' threw an exception.
DllNotFoundException: Unable to load DLL 'tensorflow' or one of its dependencies: 找不到指定的模块。 (Exception from HRESULT: 0x8007007E)
---------- MY CODE----
using System;
using Tensorflow;
namespace TFNet
{
class Program
{
static void Main(string[] args)
{
//Console.WriteLine("Hello World!");
var hello = tf.constant("Hello, TensorFlow!");
}
}
}
Nuget TensorFlow.NET(0.8.0)
.NET Core 2.2
The text was updated successfully, but these errors were encountered: