gpt4 book ai didi

python - 如何使用 Scikit-learn 找到簇质心

转载 作者:行者123 更新时间:2023-11-30 09:33:29 26 4
gpt4 key购买 nike

我有一个带有(标记的)簇的数据集。我试图找到每个簇的质心(一个距离簇的所有数据点最小的向量)。

我找到了许多解决方案来执行聚类,然后才找到质心,但我还没有找到现有的解决方案。

Python schikit-learn 是首选。谢谢。

最佳答案

直接来自docs :

from sklearn.neighbors.nearest_centroid import NearestCentroid
import numpy as np
X = np.array([[-1, -1], [-2, -1], [-3, -2], [1, 1], [2, 1], [3, 2]])
y = np.array([1, 1, 1, 2, 2, 2])
clf = NearestCentroid()
clf.fit(X, y)

print(clf.centroids_)
# [[-2. -1.33333333]
# [ 2. 1.33333333]]

关于python - 如何使用 Scikit-learn 找到簇质心,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50332786/

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