This is my personal notes taken for the course Machine learning by Standford. Feel free to check the assignments. Also, if you want to read my other notes, feel free to check them at my blog.
I) Introduction
In the clustering problem, we are given a training set ,and want to group the data into a few cohesive "clusters". Here, as usual; but no labels are given. So, this is an unsupervised learning problem. The k-means clustering algorithm is as follows:
In the algorithm above, we have:
, number of clusters.
is the index of the cluster such that belongs to it.
is a cluster centroid (center of a cluster).
II) Algorithm explanation
To initialize the cluster centroids (in step 1 of the algorithm above), we could choose training examples randomly, and set the cluster centroids to be equal to the values of these examples. (Other initialization methods are also possible).
Figure 2: Training examples are shown as dots, and cluster centroids are shown as crosses
a. Original dataset.
b. Random initial cluster centroids (in this instance, not chosen to be equal to two training examples).
(c-f). Illustration of running two iterations of k-means. In each iteration, we assign each training example to the closest cluster centroid (shown by "painting" the training examples the same color as the cluster centroid to which is assigned); then we move each cluster centroid to the mean of the points assigned to it.
Is the k-means algorithm guaranteed to converge? Yes it is, in a certain sense. In particular, let us define the distortion function to be:
where is cluster centroid of the cluster to which example has been assigned.
It can be shown that k-means is exactly coordinate descent on .
The distortion function is a non-convex function, and so coordinate descent on is not guaranteed to converge to the global minimum. In other words, k-means can be susceptible to local optima. Very often k-means will work fine and come up with very good clusterings despite this. But if you are worried about getting stuck in bad local minima, one common thing to do is run k-means many times (using different random initial values for the cluster centroids ). Then, out of all the different clusterings found, pick the one that gives the lowest distortion .
What is coordinate descent ?
Coordinate descent is an optimization algorithm that find the minimum of a function by minimizing one parameters at the time while holding others fixed.
In the case of distortion function, , we will do the following:
Thus, must monotonically decrease, and the value of must converge. (Usually, this implies that and will converge too).