-
Notifications
You must be signed in to change notification settings - Fork 2
Description
Hello Mark,
at the ObjectDetection project I get an error message when I try "dotnet run" and find an solution.
System.DllNotFoundException: Unable to load DLL 'tensorflow' or one of its dependencies: Das angegebene Modul wurde nicht gefunden. (0x8007007E).
Open the project with Visual Studio --> then register Project --> NuGet Package ....
I found an solution
@dotnet/machinelearning#4112
but I only do the following steps from there and then it work. I search and add the following packages in Visual Studio and set to x64.
"Microsoft.Azure.Functions.Extensions"
"Microsoft.Extensions.DependencyInjection"
"Microsoft.Extensions.ML
"Microsoft.ML" Version
"Microsoft.ML.ImageAnalytics"
"Microsoft.ML.Vision"
"Microsoft.NET.Sdk.Functions"
"SciSharp.TensorFlow.Redist"
2 change To X64 (Because tensorflow can't run on x86)
How it looks like after added the packages ...
Now it works :-)
Regards
Christian