Hello to all,
I am currently working on a Machine Learning project, I have launched the auto ML of Microsoft Azure Studio on my data and I have downloaded the best model in a folder with the appropriate Pickle file. However I would like to use this pickle in my prediction API in c# .NET, for this fact I used Microsoft.ML, to load the pickle and use it, here is my code snippet :
"MLContext mLContext = new MLContext();
var model = mLContext.Model.Load(PicklePath, out DataViewSchema schema); "
However I have an error at this level (2nd line), the error tells me : "Repository doesn't contain entry DataLoaderModel\Model.key".
From what I understand the pickle is incompatible with Microsoft.ML, how can I use the resulting pickle of auto ml in this api please?
Thanks in advance,
Lysa