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 theKMeans
object 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 arraysy
andlabels
, 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.
Taak
Swipe to start coding
- Compare the
correct_labels
with the predicted ones. - Print the results.
Oplossing
Mark tasks as Completed
Was alles duidelijk?
Bedankt voor je feedback!
Sectie 1. Hoofdstuk 9
Vraag AI
Vraag AI
Vraag wat u wilt of probeer een van de voorgestelde vragen om onze chat te starten.
Suggested prompts:
Stel mij vragen over dit onderwerp
Vat dit hoofdstuk samen
Toon voorbeelden uit de praktijk
Awesome!
Completion rate improved to 9.09
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 theKMeans
object 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 arraysy
andlabels
, 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.
Taak
Swipe to start coding
- Compare the
correct_labels
with the predicted ones. - Print the results.
Oplossing
Mark tasks as Completed
Was alles duidelijk?
Bedankt voor je feedback!
Sectie 1. Hoofdstuk 9