dotnet / machinelearning-modelbuilder

Simple UI tool to build custom machine learning models.
Creative Commons Attribution 4.0 International
265 stars 56 forks source link

[AutoML] Generated model file should target netstandard2.0 #701

Closed eerhardt closed 4 years ago

eerhardt commented 5 years ago

Using mlnet auto-train, the generated .Model file should target netstandard2.0. Currently it is targeting netcoreapp2.1 which is not correct.

ML.NET supports a lot of app types - .NET Core is just one of them. The model project should be targeting netstandard.

https://github.com/dotnet/machinelearning/blob/b5438d1dcdce7059d88f5c17e16be4aabfaec3bd/src/mlnet/Templates/Console/ModelProject.tt#L8-L10

eerhardt commented 5 years ago

cc @srsaggam

LittleLittleCloud commented 4 years ago

image