Kursinnhold
Clustering Demystified
Check the Quality
Now that we have trained our clustering algorithm we have to evaluate its performances to assess the results.
Methods description
.labels_: This attribute of theKMeansobject contains the cluster labels assigned to each data point after fitting the KMeans algorithm to the data;y == labels: This is a comparison operation that checks element-wise equality between two arraysyandlabels, resulting in a boolean array;correct_labels: This variable stores the count of data points that were correctly labeled, i.e., assigned to the correct cluster.
Oppgave
Swipe to start coding
- Compare the
correct_labelswith the predicted ones. - Print the results.
Løsning
Mark tasks as Completed
Alt var klart?
Takk for tilbakemeldingene dine!
Seksjon 1. Kapittel 9
AVAILABLE TO ULTIMATE ONLY