Difference between revisions of "K-means"

From Cohen Courses
Jump to navigationJump to search
(Created page with 'In statistics and machine learning, k-means clustering is a method of cluster analysis which aims to partition n observations into k clusters in which each observation belongs to…')
 
 
Line 6: Line 6:
  
 
where '''''μ'''''<sub>''i''</sub> is the mean of points in ''S''<sub>''i''</sub>.
 
where '''''μ'''''<sub>''i''</sub> is the mean of points in ''S''<sub>''i''</sub>.
 +
 +
For more detail information, please visit WIKI: http://en.wikipedia.org/wiki/K-means

Latest revision as of 00:02, 28 March 2011

In statistics and machine learning, k-means clustering is a method of cluster analysis which aims to partition n observations into k clusters in which each observation belongs to the cluster with the nearest mean. It is similar to the expectation-maximization algorithm for mixtures of Gaussians in that they both attempt to find the centers of natural clusters in the data as well as in the iterative refinement approach employed by both algorithms.

Given a set of observations (x1, x2, …, xn), where each observation is a d-dimensional real vector, k-means clustering aims to partition the n observations into k sets (kn) S = {S1S2, …, Sk} so as to minimize the within-cluster sum of squares (WCSS):

where μi is the mean of points in Si.

For more detail information, please visit WIKI: http://en.wikipedia.org/wiki/K-means