When I trying to use LoadFromEnumerable to load my dataset which is implemented as List I got the following error (as mentioned in the title)
Could not load file or assembly 'Microsoft.ML.Api, Version=1.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51'. The system cannot find the file specified
I have updated to the latest version of ML.net
packages but I still not find the documentation of Microsoft.ML.Api
var mlContext = new Microsoft.ML.MLContext();
var trainingData = mlContext.Data.LoadFromEnumerable(dataset);
EDIT