🐎BLOG🐎

ML .NET CLIでサポートされているシナリオ

pulished:

There are several ML scenarios that are supported by the ML.NET CLI:

  • Classification : Use this when you want to predict which category data belongs in (for example, analyzing sentiment of customer reviews as either positive or negative).
  • Image classification : Use this when you want to predict which category an image belongs to (for example, predicting if an image is of a cat or a dog).
  • Regression (for example, value prediction) : Use this when you want to predict a numeric value (for example, predicting house price).
  • Forecasting : Use this when you want to forecast future values in a time-series (for example, forecast quarterly sales).
  • Recommendation : Use this when you want to recommend items to users based on historical ratings (for example, product recommendation).

ML.NETでやれるシナリオはClassification

参考