有没有办法只使用gensim的most_similar函数的word结果?
Is there a way to use only the word result of most_similar function of gensim?
我正在尝试使用 gensim 最相似的函数,但结果以列表的形式出现,比方说 a=(word, cosine similarity)。但是我无法通过 [0] 检索单词。有没有办法访问单词本身?我需要将其用作输入。
most_similar()
返回的排名结果列表是一个列表,其中每个项目都是一个词及其相似度值的元组。
之后...
sims = model.wv.most_similar(my_word)
top_word = sims[0][0]
...top_word
将具有与 my_word
.
最相似的词
我正在尝试使用 gensim 最相似的函数,但结果以列表的形式出现,比方说 a=(word, cosine similarity)。但是我无法通过 [0] 检索单词。有没有办法访问单词本身?我需要将其用作输入。
most_similar()
返回的排名结果列表是一个列表,其中每个项目都是一个词及其相似度值的元组。
之后...
sims = model.wv.most_similar(my_word)
top_word = sims[0][0]
...top_word
将具有与 my_word
.