K-means clustering

Image Not Showing Possible Reasons
  • The image file may be corrupted
  • The server hosting the image is unavailable
  • The image path is incorrect
  • The image format is not supported
Learn More →

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

x(1),...,x(m) ,and want to group the data into a few cohesive "clusters". Here,
x(i)Rn
as usual; but no labels
y(i)
are given. So, this is an unsupervised learning problem. The k-means clustering algorithm is as follows:

1. Initialize cluster centroids μ1,μ2,...,μkRn randomly2. Repeat until convergence : 

For every i, setc(i):=jx(i)μj2For every j, setμj:=i=1m1{c(i)=j}x(i)i=1m1{c(i)=j}

In the algorithm above, we have:

  1. k
    , number of clusters.
  2. c(i)
    is the index of the cluster such that
    x(i)
    belongs to it.
  3. μj
    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

k training examples randomly, and set the cluster centroids to be equal to the values of these
k
examples. (Other initialization methods are also possible).

Image Not Showing Possible Reasons
  • The image file may be corrupted
  • The server hosting the image is unavailable
  • The image path is incorrect
  • The image format is not supported
Learn More →
Figure 1: 2 cluster centroids equal to 2 training examples

The inner-loop is then compose of 2 steps:

  1. Cluster assignment step (clusters
    c(i)
    are updated).
  2. Move cluster step (cluster centroids
    μj
    are updated).

1. Cluster assignment

We assign each training example

x(i) to the nearest cluster centroid
μj
. To do so, we need to find the value
j
that minimizes
x(i)μj2
(Euclidean distance).

2. Move cluster

Compute the averages for all the points inside each of the cluster centroid groups

c, then move the cluster centroid points
μj
to those averages.


Remark:

  • i=1m1{c(i)=j}x(i)
    = sum over all the points
    x(i)
    that belong to the cluster
    c(i)
  • i=1m1{c(i)=j}
    = total number of points
    x(i)
    that belong to the cluster
    c(i)
    (we will denoted it as
    n
    ).

Thus,


For every j, set:
μj:=i=1m1{c(i)=j}x(i)i=1m1{c(i)=j}=1ni=1m1{c(i)=j}x(i)

III) K-means algorithm

Image Not Showing Possible Reasons
  • The image file may be corrupted
  • The server hosting the image is unavailable
  • The image path is incorrect
  • The image format is not supported
Learn More →
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:

J(c,μ)=i=1mx(i)μc(i)2

where

μc(i) is cluster centroid of the cluster to which example
x(i)
has been assigned.

It can be shown that k-means is exactly coordinate descent on

J.

The distortion function

J is a non-convex function, and so coordinate descent on
J
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
μj
). Then, out of all the different clusterings found, pick the one that gives the lowest distortion
J(c,μ)
.

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,

J(c,μ), we will do the following:


Repeat until J converges {

1. minimizes J with respect to c while holding μ fixed.

2. minimizes J with respect to μ while holding c fixed.

}

Thus,

J must monotonically decrease, and the value of
J
must converge. (Usually, this implies that
c
and
μ
will converge too).