gpt4 book ai didi

Python - 计算 word2vec 向量的层次聚类并将结果绘制为树状图

转载 作者:太空狗 更新时间:2023-10-29 22:25:06 26 4
gpt4 key购买 nike

我使用我的领域文本语料库生成了一个 100D word2vec 模型,合并了常用短语,例如 (good bye => good_bye)。然后我提取了 1000 个所需单词的向量。

所以我有一个像这样的 1000 numpy.array:

[[-0.050378,0.855622,1.107467,0.456601,...[100 dimensions],
[-0.040378,0.755622,1.107467,0.456601,...[100 dimensions],
...
...[1000 Vectors]
]

单词数组如下:

["hello","hi","bye","good_bye"...1000]

我对我的数据运行了 K-Means,我得到的结果很有意义:

X = np.array(words_vectors)
kmeans = KMeans(n_clusters=20, random_state=0).fit(X)
for idx,l in enumerate(kmeans.labels_):
print(l,words[idx])

--- Output ---
0 hello
0 hi
1 bye
1 good_bye

0 = 问候 1 = 告别

但是,有些话让我觉得hierarchical clustering 更适合这个任务。我试过使用 AgglomerativeClustering,不幸的是......对于这个 Python nobee,事情变得复杂,我迷路了。

我如何聚类我的向量,以便输出或多或少是一个树状图,就像在 this wiki 页面上找到的那样? enter image description here

最佳答案

我到现在都遇到了同样的问题!在线搜索后总是找到您的帖子(关键字= word2vec 上的层次聚类)。我必须给你一个可能有效的解决方案。

sentences = ['hi', 'hello', 'hi hello', 'goodbye', 'bye', 'goodbye bye']
sentences_split = [s.lower().split(' ') for s in sentences]

import gensim
model = gensim.models.Word2Vec(sentences_split, min_count=2)

from matplotlib import pyplot as plt
from scipy.cluster.hierarchy import dendrogram, linkage

l = linkage(model.wv.syn0, method='complete', metric='seuclidean')

# calculate full dendrogram
plt.figure(figsize=(25, 10))
plt.title('Hierarchical Clustering Dendrogram')
plt.ylabel('word')
plt.xlabel('distance')

dendrogram(
l,
leaf_rotation=90., # rotates the x axis labels
leaf_font_size=16., # font size for the x axis labels
orientation='left',
leaf_label_func=lambda v: str(model.wv.index2word[v])
)
plt.show()

关于Python - 计算 word2vec 向量的层次聚类并将结果绘制为树状图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41462711/

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