Hi I want to load my h5 model in C# using visual studio code, to load this model I'm using keras.net, my code looks like below.
var model = Keras.Models.Sequential.LoadModel("my_model.h5");
var result = model.Predict(data);
Console.WriteLine(result);
but I got is error message like this
Exception thrown: 'System.DllNotFoundException' in mscorlib.dll An unhandled exception of type 'System.DllNotFoundException' occurred in mscorlib.dll Unable to load DLL 'python38': The specified module could not be found. (Exception from HRESULT: 0x8007007E)
does anyone know how to fix this? thank you