ML.NET version | API type | Status | App Type | Data type | Scenario | ML Task | Algorithms |
---|---|---|---|---|---|---|---|
v1.3.1 | Dynamic API | Up-to-date | Console app | .txt file | Clustering Iris flowers | Clustering | K-means++ |
In this introductory sample, you'll see how to use ML.NET to divide iris flowers into different groups that correspond to different types of iris. In the world of machine learning, this task is known as clustering.
To demonstrate clustering API in action, we will use three types of iris flowers: setosa, versicolor, and virginica. All of them are stored in the same dataset. Even though the type of these flowers is known, we will not use it and run clustering algorithm only on flower parameters such as petal length, petal width, etc. The task is to group all flowers into three different clusters. We would expect the flowers of different types belong to different clusters.
The inputs of the model are following iris parameters:
- petal length
- petal width
- sepal length
- sepal width
The generalized problem of clustering is to group a set of objects in such a way that objects in the same group are more similar to each other than to those in other groups.
Some other examples of clustering:
- group news articles into topics: sports, politics, tech, etc.
- group customers by purchase preferences.
- divide a digital image into distinct regions for border detection or object recognition.
Clustering can look similar to multiclass classification, but the difference is that for clustering tasks we don't know the answers for the past data. So there is no "tutor"/"supervisor" that can tell if our algorithm's prediction was right or wrong. This type of ML task is called unsupervised learning.
To solve this problem, first we will build and train an ML model. Then we will use trained model for predicting a cluster for iris flowers.
Building a model includes: uploading data (iris-full.txt
with TextLoader
), transforming the data so it can be used effectively by an ML algorithm (with Concatenate
), and choosing a learning algorithm (KMeans
). All of those steps are stored in trainingPipeline
:
// STEP 1: Common data loading configuration
let fullData =
mlContext.Data.LoadFromTextFile(dataPath,
hasHeader = true,
separatorChar = '\t',
columns =
[|
TextLoader.Column("Label", DataKind.Single, 0)
TextLoader.Column("SepalLength", DataKind.Single, 1)
TextLoader.Column("SepalWidth", DataKind.Single, 2)
TextLoader.Column("PetalLength", DataKind.Single, 3)
TextLoader.Column("PetalWidth", DataKind.Single, 4)
|]
)
//Split dataset in two parts: TrainingDataset (80%) and TestDataset (20%)
let trainingDataView, testingDataView =
let split = mlContext.Data.TrainTestSplit(fullData, testFraction = 0.2)
split.TrainSet, split.TestSet
//STEP 2: Process data transformations in pipeline
let dataProcessPipeline =
mlContext.Transforms.Concatenate("Features", "SepalLength", "SepalWidth", "PetalLength", "PetalWidth")
|> Common.ConsoleHelper.downcastPipeline
// (Optional) Peek data in training DataView after applying the ProcessPipeline's transformations
Common.ConsoleHelper.peekDataViewInConsole<IrisData> mlContext trainingDataView dataProcessPipeline 10 |> ignore
Common.ConsoleHelper.peekVectorColumnDataInConsole mlContext "Features" trainingDataView dataProcessPipeline 10 |> ignore
// STEP 3: Create and train the model
let trainer = mlContext.Clustering.Trainers.KMeans(featureColumnName = "Features", numberOfClusters = 3)
let trainingPipeline = dataProcessPipeline.Append(trainer)
let trainedModel = trainingPipeline.Fit(trainingDataView)
Training the model is a process of running the chosen algorithm on the given data. To perform training you need to call the Fit() method.
let trainedModel = trainingPipeline.Fit(trainingDataView)
After the model is build and trained, we can use the Predict()
API to predict the cluster for an iris flower and calculate the distance from given flower parameters to each cluster (each centroid of a cluster).
use stream = new FileStream(modelPath, FileMode.Open, FileAccess.Read, FileShare.Read)
let model,inputSchema = mlContext.Model.Load(stream)
// Create prediction engine related to the loaded trained model
let predEngine = mlContext.Model.CreatePredictionEngine<IrisData, IrisPrediction>(model)
//Score
let resultprediction = predEngine.Predict(sampleIrisData)
printfn "Cluster assigned for setosa flowers: %d" resultprediction.SelectedClusterId