Using Built-In Supervised Learning Tasks
Learn the process of selecting a supervised learning task in ML.NET.
We'll cover the following...
ML.NET has a wide range of supervised ML tasks available in its CLI and the NuGet libraries. These include the following:
Classification: This is where the model is built to determine whether an entity belongs to a specific category based on its parameters. For example, we might want to build a model that identifies a type of car based on its dimensions, the number of seats, engine power, etc. ML.NET supports binary classification, multi-class classification, and image classification.
Regression: Unlike classification, which deals with categorical labels, regression is used to predict a calculated ...