我已经使用本教程http://ai.intelligentonlinetools.com/ml/k-means-clustering-example-word2vec/了解了使用NLTK软件包部分的K-clustering。
The code for NLTK K-clustering is like this :
X = model[model.wv.vocab]
Cluster = 2
Kcluster = KMeansClusterer(Cluster,distance = nltk.cluster.util.cosine_distance,repeats = 25 )
ApplyCluster = Kcluster.cluster(model[abc.vocab], assign_clusters=True)
所以为此我想要想象我们的结果,但我不知道。我试过plot.scatter()但是我有一些问题需要定义要采用的参数。