You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Product Information:
Version: 2.1.201
Commit SHA-1 hash: 7932dc6179
Runtime Environment:
OS Name: Windows
OS Version: 10.0.17134
OS Platform: Windows
RID: win10-x64
Base Path: C:\Program Files\dotnet\sdk\2.1.201\
Microsoft .NET Core Shared Framework Host
Version : 2.0.7
Build : 2d61d0b043915bc948ebf98836fefe9ba942be11
Issue
What did you do?
Created a simple ML.NET Console project with the following code:
var pipeline = new LearningPipeline();
var splitter = new TrainTestDatasetSplitter() { Fraction = 0.7f };
pipeline.Add(new TextLoader<SalaryData>("SalaryData.csv", useHeader: true, separator: ","));
pipeline.Add(new ColumnConcatenator("Features", "YearsExperience"));
pipeline.Add(new OrdinaryLeastSquaresRegressor());
pipeline.Train<SalaryData, SalaryPrediction>();
What happened?
When calling Train, I'm getting the error The MKL library (Microsoft.ML.MklImports.dll) or one of its dependencies is missing. After some searching, I couldn't find where I can get a reference to it to include in the project.
What did you expect?
Expected no errors, or a way to include the missing dependency.
If anything else is needed, just let me know. Thanks!
The text was updated successfully, but these errors were encountered:
System information
Issue
What did you do?
Created a simple ML.NET Console project with the following code:
What happened?
When calling
Train
, I'm getting the errorThe MKL library (Microsoft.ML.MklImports.dll) or one of its dependencies is missing.
After some searching, I couldn't find where I can get a reference to it to include in the project.What did you expect?
Expected no errors, or a way to include the missing dependency.
If anything else is needed, just let me know. Thanks!
The text was updated successfully, but these errors were encountered: