Using Scipy Kmeans For Cluster Analysis
I want to understand scipy.cluster.vq.kmeans. Having a number of points distributed in 2D space, the problem is to group them into clusters. This problem came to my attention read
Solution 1:
On data like this, whitening does not make a difference: your x and y axes were already similarly scaled.
K-means does not reliably find the global optimum. It tends to get stuck in local optima. That is why it is common to use multiple runs and keep the best fit only, and to experiment with complex initialization procedures like k-means++.
Post a Comment for "Using Scipy Kmeans For Cluster Analysis"