gpt4 book ai didi

python - K 均值结果索引在第二次运行中有所不同

转载 作者:行者123 更新时间:2023-12-01 06:49:30 26 4
gpt4 key购买 nike

我正在对一些统计数据运行 K-Means。我的矩阵大小是[192x31634]。K-Means 表现良好并创建了我想要的 7 个质心。所以我的结果是 [192x7]

作为一些 self 检查,我将在 K 均值运行中获得的索引值存储到字典中。

    centroids,idx = runkMeans(X_train, initial_centroids, max_iters)
resultDict.update({'centroid' : centroids})
resultDict.update({'idx' : idx})

然后,我在用于查找质心的相同数据上测试我的 K 均值。奇怪的是我的结果不同:

    dict= pickle.load(open("MyDictionary.p", "rb"))         
currentIdx = findClosestCentroids(X_train, dict['centroid'])
print("idx Differs: ",np.count_nonzero(currentIdx != dict['idx']))

输出:

idx Differs: 189

有人可以向我解释一下这个区别吗?我将算法的最大迭代次数调至 50,这似乎太多了。 @Joe Halliwell 指出,K-Means 是非确定性的。 findClosestCentroids 被 runkMeans 调用。我不明白为什么两个 idx 的结果会不同。感谢您的任何想法。

这是我的代码:

    def findClosestCentroids(X, centroids):
K = centroids.shape[0]
m = X.shape[0]
dist = np.zeros((K,1))
idx = np.zeros((m,1), dtype=int)
#number of columns defines my number of data points
for i in range(m):
#Every column is one data point
x = X[i,:]
#number of rows defines my number of centroids
for j in range(K):
#Every row is one centroid
c = centroids[j,:]
#distance of the two points c and x
dist[j] = np.linalg.norm(c-x)
#if last centroid is processed
if (j == K-1):
#the Result idx is set with the index of the centroid with minimal distance
idx[i] = np.argmin(dist)
return idx

def runkMeans(X, initial_centroids, max_iters):
#Initialize values
m,n = X.shape
K = initial_centroids.shape[0]
centroids = initial_centroids
previous_centroids = centroids
for i in range(max_iters):
print("K_Means iteration:",i)
#For each example in X, assign it to the closest centroid
idx = findClosestCentroids(X, centroids)
#Given the memberships, compute new centroids
centroids = computeCentroids(X, idx, K)
return centroids,idx

编辑:我将 max_iters 设置为 60 并得到

idx Differs: 0

看来这就是问题所在。

最佳答案

K-means 是一种非确定性算法。通常通过设置随机种子来控制这一点。例如,SciKit Learn 的实现为此提供了 random_state 参数:

from sklearn.cluster import KMeans
import numpy as np
X = np.array([[1, 2], [1, 4], [1, 0], [10, 2], [10, 4], [10, 0]])
kmeans = KMeans(n_clusters=2, random_state=0).fit(X)

请参阅 https://scikit-learn.org/stable/modules/generated/sklearn.cluster.KMeans.html 处的文档

关于python - K 均值结果索引在第二次运行中有所不同,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59085513/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com