我正在尝试运行此问题的第一个答案Python Relating k-means cluster to instance但是我收到以下错误:
Traceback (most recent call last):
File "test.py", line 16, in <module>
model = sklearn.cluster.k_means(a, clust_centers)
File "/usr/local/lib/python2.7/dist-packages/scikit_learn-0.14.1-py2.7-linux-i686.egg/sklearn/cluster/k_means_.py", line 267, in k_means
x_squared_norms=x_squared_norms, random_state=random_state)
File "/usr/local/lib/python2.7/dist-packages/scikit_learn-0.14.1-py2.7-linux-i686.egg/sklearn/cluster/k_means_.py", line 386, in _kmeans_single
centers = _k_means._centers_dense(X, labels, n_clusters, distances)
File "_k_means.pyx", line 280, in sklearn.cluster._k_means._centers_dense (sklearn/cluster/_k_means.c:4268)
ValueError: Buffer dtype mismatch, expected 'DOUBLE' but got 'float'
当我第一次运行这个程序时,它起作用了。但后续运行失败并出现该错误。
系统规格:
Python 2.7.3 (default, Sep 26 2013, 20:08:41)
[GCC 4.6.3] on linux2
numpy.__version__
'1.8.0'
sklearn.__version__
'0.14.1'
ubuntu 12.04
答案 0 :(得分:1)
我试图在自己的数据上运行k-means时遇到了这个问题。创建数据类型为“double”的新数组解决了我的问题。
array_double = np.array(a, dtype=np.double)
我的数据以前存储为'float32'。