I have a .Net Framework "4.6.2" web application and I have created ml model and want to use it in the web app, but when I try to load the model like this:
ITransformer mlModel = mlContext.Model.Load(_modelPath, out var modelInputSchema);
I get the following error:
DllNotFoundException: Unable to load DLL 'tensorflow': The specified module could not be found. (Exception from HRESULT: 0x8007007E)
Updates: when I create core console app and use the same ml model it works correctly but when I use .Net Framework "4.6.2" web application it doesn`t work
User contributions licensed under CC BY-SA 3.0