在执行链接中给出的kmeans集群代码时,我收到以下错误:http://scikit-learn.org/stable/auto_examples/document_clustering.html
Traceback (most recent call last):
File "/home/user/kskt.py", line 8, in <module>
from sklearn.decomposition import TruncatedSVD
ImportError: cannot import name TruncatedSVD
有人能帮我吗?我是这方面的初学者。
请检查sklearn
的版本
>>> import sklearn
>>> sklearn.__version__
您需要0.14.x
+才能使用TruncatedSVD
0.13.x无CCD_ 4,但存在于0.14.x 中