2017-05-14 10 views
1

単語ごとに100文と10次元ベクトルを含むテキストファイルを別のテキストファイルに格納します。私は、新しいテキストファイルを作成して、各マトリックスの文中の単語ごとにベクトルが印刷されるようにしたいと考えています。私を助けてください。単語を含むベクトルをテキストファイルにマップする方法

答えて

0

これはPythonとGensimで行う方法の1つです。

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

関連する問題