InterviewSolution
Saved Bookmarks
| 1. |
What do you mean by the K-means algorithm? |
|
Answer» One of the most famous partitioning methods is K-mean. With this unsupervised LEARNING algorithm, the unlabeled data is grouped in clusters. Here, 'k' indicates the NUMBER of clusters. It tries to keep each cluster separated from the other. Since it is an unsupervised model, there will be no labels for the clusters to work with. |
|