Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
gensim.models.doc2vec.Doc2Vec モデル d2v_model = Doc2Vec(sentences, size=100, window=8, min_count=5, workers=4) をトレーニングし、docvec = d2v_model.docvecs[0] でドキュメント ベクトルを取得できます。
トレーニング済みモデルから単語ベクトルを取得するにはどうすればよいですか?