gpt4 book ai didi

python - 在 Python 中的 Kmeans 之后确定簇的大小

转载 作者:行者123 更新时间:2023-11-28 18:34:13 25 4
gpt4 key购买 nike

所以我已经成功找到了 python 中的 kmeans 算法所需的最佳簇数,但是现在我如何才能找到在 python 中应用 Kmeans 后得到的簇的确切大小?

这是一段代码

data=np.vstack(zip(simpleassetid_arr,simpleuidarr))
centroids,_ = kmeans(data,round(math.sqrt(len(uidarr)/2)))
idx,_ = vq(data,centroids)

initial = [cluster.vq.kmeans(data,i) for i in range(1,10)]
var=[var for (cent,var) in initial] #to determine the optimal number of k using elbow test
num_k=int(raw_input("Enter the number of clusters: "))

cent, var = initial[num_k-1]

assignment,cdist = cluster.vq.vq(data,cent)

最佳答案

您可以使用此方法获取簇大小:

print np.bincount(idx)

对于下面的示例,np.bincount(idx) 输出两个元素的数组,例如[156 144]

from numpy import vstack,array
import numpy as np
from numpy.random import rand
from scipy.cluster.vq import kmeans,vq
# data generation
data = vstack((rand(150,2) + array([.5,.5]),rand(150,2)))
# computing K-Means with K = 2 (2 clusters)
centroids,_ = kmeans(data,2)
# assign each sample to a cluster
idx,_ = vq(data,centroids)

#Print number of elements per cluster
print np.bincount(idx)

关于python - 在 Python 中的 Kmeans 之后确定簇的大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34024975/

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