首页 Machine Learning Course by Andrew Ng 7a

Machine Learning Course by Andrew Ng 7a

举报
开通vip

Machine Learning Course by Andrew Ng 7a CS229 Lecture notes Andrew Ng The k-means clustering algorithm 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. ...

Machine Learning Course by Andrew Ng 7a
CS229 Lecture notes Andrew Ng The k-means clustering algorithm 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, . . . , µk ∈ R n randomly. 2. Repeat until convergence: { For every i, set c(i) := argmin j ||x(i) − µj|| 2. For each j, set µj := ∑m i=1 1{c (i) = j}x(i)∑m i=1 1{c (i) = j} . } In the algorithm above, k (a parameter of the algorithm) is the number of clusters we want to find; and the cluster centroids µj represent our current guesses for the positions of the centers of the clusters. 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.) The inner-loop of the algorithm repeatedly carries out two steps: (i) “Assigning” each training example x(i) to the closest cluster centroid µj, and (ii) Moving each cluster centroid µj to the mean of the points assigned to it. Figure 1 shows an illustration of running k-means. 1 2 (a) (b) (c) (d) (e) (f) Figure 1: K-means algorithm. Training examples are shown as dots, and cluster centroids are shown as crosses. (a) Original dataset. (b) Random ini- tial 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. (Best viewed in color.) Images courtesy Michael Jordan. 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, µ) = m∑ i=1 ||x(i) − µc(i)|| 2 Thus, J measures the sum of squared distances between each training exam- ple x(i) and the cluster centroid µc(i) to which it has been assigned. It can be shown that k-means is exactly coordinate descent on J . Specifically, the inner-loop of k-means repeatedly minimizes J with respect to c while holding µ fixed, and then minimizes J with respect to µ while holding c fixed. Thus, J must monotonically decrease, and the value of J must converge. (Usu- ally, this implies that c and µ will converge too. In theory, it is possible for 3 k-means to oscillate between a few different clusterings—i.e., a few different values for c and/or µ—that have exactly the same value of J , but this almost never happens in practice.) 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, µ).
本文档为【Machine Learning Course by Andrew Ng 7a】,请使用软件OFFICE或WPS软件打开。作品中的文字与图均可以修改和编辑, 图片更改请在作品中右键图片并更换,文字修改请直接点击文字进行修改,也可以新增和删除文档中的内容。
该文档来自用户分享,如有侵权行为请发邮件ishare@vip.sina.com联系网站客服,我们会及时删除。
[版权声明] 本站所有资料为用户分享产生,若发现您的权利被侵害,请联系客服邮件isharekefu@iask.cn,我们尽快处理。
本作品所展示的图片、画像、字体、音乐的版权可能需版权方额外授权,请谨慎使用。
网站提供的党政主题相关内容(国旗、国徽、党徽..)目的在于配合国家政策宣传,仅限个人学习分享使用,禁止用于任何广告和商用目的。
下载需要: 免费 已有0 人下载
最新资料
资料动态
专题动态
is_903244
暂无简介~
格式:pdf
大小:264KB
软件:PDF阅读器
页数:3
分类:工学
上传时间:2013-01-08
浏览量:22