如何在文本文件中使用单词映射向量

时间:2017-05-14 08:25:11

标签: mapping word2vec

我有一个包含100个句子的文本文件,每个单词的10维向量存储在另一个文本文件中。我想创建一个新的文本文件,其中将为每个矩阵中的每个单词中的每个单词打印向量。请帮帮我。

1 个答案:

答案 0 :(得分:0)

以下是使用Python和Gensim进行此操作的一种方法。

from gensim.models import word2vec

# Change this to your own path.
pathToBinVectors = '/data/GoogleNews-vectors-negative300.bin'

model1 = word2vec.Word2Vec.load_word2vec_format(pathToBinVectors, binary=True)

print model1['resume'] -> This will print a vector of the word "resume".

来源:https://bitbucket.org/yunazzang/aiwiththebest_byor