当前位置:   article > 正文

K—means(K-均值聚类算法)_k-means

k-means

K-means算法简介

       K-means是一种无监督的聚类算法,其中的k代表类簇个数,means代表类簇内数据对象的均值(这种均值是一种队类簇中心的描述。K-means算法以距离作为数据对象间相似度的衡量标准,即数据对象间的距离越小,则它们的相似性越高,即它们越有可能在同一个类簇。


k-means算法基本原理

kmeans算法又名k均值算法。其算法思想大致为:先从样本集中随机选取 k 个样本作为簇中心,并计算所有样本与这 k 个“簇中心”的距离,对于每一个样本,将其划分到与其距离最近的“簇中心”所在的簇中,对于新的簇计算各个簇的新的“簇中心”。
  根据以上描述,我们大致可以猜测到实现kmeans算法的主要三点:

  •      簇个数 k的选择以及每个聚类初始聚类中心的选择
  •     各个样本点到“簇中心”的距离
  •     将样本按照最小距离原则分配到最近的邻近聚类,并根据新划分的簇,更新“簇中心,
  •     重复上一个步骤,直到聚类中心不再发生变化;
  •     输出最终的聚类中心和k个簇划分  

kmeans算法的要点

(1) k 值的选择
     k 的选择一般是按照对数据的先验经验选择一个合适的k值,如果没有什么先验知识,则可以通过交叉验证选择一个合适的k值。。
 2) 在确定了k的个数后,我们需要选择k个初始化的质心,就像上图b中的随机质心。由于我们是启发式方法,k个初始化的质心的位置选择对最后的聚类结果和运行时间都有很大的影响,因此需要选择合适的k个质心,最好这些质心不能太近
     给定样本 

现在我们来总结下传K-Means算法的具体流程

 输入是样本集D={x1,x2,...xm} ,D={x1,x2,...xm},聚类的簇树k,最大迭代次数N

   输出是簇划分C={C1,C2,...Ck}C={C1,C2,...Ck} 

x={x1,x2,...,xn}其中距离的度量方法主要分为以下几种:

               

1) 从数据集D中随机选择k个样本作为初始的k个质心向量: {μ1,μ2,...,μk}{μ1,μ2,...,μk}

2)对于n=1,2,...,N

  a) 将簇划分C初始化为Ct=t=1,2...k

  b) 对于i=1,2...m,计算样本xixi和各个质心向量μj(j=1,2,...k)的距离:dij=||xiμj||22,将xi标记最小的为dijdij所对应的类别λiλi。此时更新Cλi=Cλi{xi}

  c) 对于j=1,2,...,k,对CjCj中所有的样本点重新计算新的质心μj=1|Cj|xCjx

  e) 如果所有的k个质心向量都没有发生变化,则转到步骤3)

3) 输出簇划分C={C1,C2,...Ck}

 

代码:

  1. import numpy as np
  2. import random
  3. import matplotlib.pyplot as plt
  4. # Lloyd's algorithm
  5. # inner loop step 1
  6. def cluster_points(X, mu):
  7. clusters = {} # store k centers, type: dict
  8. for x in X:
  9. # bestmukey is "int" type
  10. # for i in enumerate(mu):
  11. # print ((i[0], np.linalg.norm(x-mu[i[0]])))
  12. bestmukey = min([(i[0], np.linalg.norm(x - mu[i[0]])) \
  13. for i in enumerate(mu)], key=lambda t: t[1])[0]
  14. # A new built-in function, enumerate(), will make certain loops a bit clearer.
  15. # enumerate(thing), where thing is either an iterator or a sequence,
  16. # returns a iterator that will return (0, thing[0]), (1, thing[1]), (2, thing[2]), and so forth.
  17. # key=lambda t:t[1] is used for sort this dict by t:t[1] (the second element in this element)
  18. try:
  19. clusters[bestmukey].append(x)
  20. except KeyError:
  21. clusters[bestmukey] = [x]
  22. return clusters
  23. # inner loop step 2, (update the mu)
  24. def reevaluate_centers(mu, clusters):
  25. newmu = []
  26. keys = sorted(clusters.keys())
  27. for k in keys:
  28. print len(clusters[k])
  29. newmu.append(np.mean(clusters[k], axis=0))
  30. return newmu
  31. def has_converged(mu, oldmu):
  32. # A tuple is a sequence of immutable Python objects.
  33. # tuple is using (), list is using [], dict is using {}
  34. return (set([tuple(a) for a in mu]) == set([tuple(a) for a in oldmu]))
  35. def find_centers(X, K):
  36. # Initialize to K random centers
  37. oldmu = random.sample(X, K)
  38. mu = random.sample(X, K)
  39. while not has_converged(mu, oldmu):
  40. oldmu = mu
  41. # Assign all points in X to clusters
  42. clusters = cluster_points(X, mu)
  43. # Reevaluate centers (update the centers)
  44. mu = reevaluate_centers(oldmu, clusters)
  45. return (mu, clusters)
  46. # The initial configuration of points for the algorithm is created as follows:
  47. def init_board(N):
  48. # random.uniform:
  49. # Draw samples from a uniform distribution
  50. X = np.array([(random.uniform(-1, 1), random.uniform(-1, 1)) for i in range(N)])
  51. return X
  52. # The following routine constructs a specified number of Gaussian distributed clusters with random variances:
  53. def init_board_gauss(N, k):
  54. n = float(N) / k
  55. X = []
  56. for i in range(k):
  57. c = (random.uniform(-1, 1), random.uniform(-1, 1))
  58. s = random.uniform(0.05, 0.5)
  59. x = []
  60. while len(x) < n:
  61. a, b = np.array([np.random.normal(c[0], s), np.random.normal(c[1], s)])
  62. # Continue drawing points from the distribution in the range [-1,1]
  63. if abs(a) < 1 and abs(b) < 1:
  64. x.append([a, b])
  65. X.extend(x)
  66. X = np.array(X)[:N]
  67. return X
  68. if __name__ == "__main__":
  69. X = init_board(100)
  70. K = 4
  71. mu, clusters = find_centers(X, K)
  72. x = []
  73. y = []
  74. for i in range(K):
  75. lx = []
  76. ly = []
  77. for l0 in clusters[i]:
  78. lx.append(l0[0])
  79. ly.append(l0[1])
  80. x.append(lx)
  81. y.append(ly)
  82. for i in range(K):
  83. plt.plot(x[i], y[i], 'o')
  84. plt.plot(mu[i][0], mu[i][1], 's', markersize=10)
  85. plt.show()

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/很楠不爱3/article/detail/129028
推荐阅读
相关标签
  

闽ICP备14008679号