Gallery examples: Bisecting K-Means and Regular K-Means Performance Comparison Demonstration of k-means assumptions A demo of K-Means clustering on the handwritten digits data Selecting the number ...| scikit-learn
This is an example showing how the scikit-learn API can be used to cluster documents by topics using a Bag of Words approach. Two algorithms are demonstrated, namely KMeans and its more scalable va...| scikit-learn
Evaluate the ability of k-means initializations strategies to make the algorithm convergence robust, as measured by the relative standard deviation of the inertia of the clustering (i.e. the sum of...| scikit-learn
Silhouette analysis can be used to study the separation distance between the resulting clusters. The silhouette plot displays a measure of how close each point in one cluster is to points in the ne...| scikit-learn
In this example we compare the various initialization strategies for K-means in terms of runtime and quality of the results. As the ground truth is known here, we also apply different cluster quali...| scikit-learn