代码拉取完成,页面将自动刷新
# coding:utf-8
from gensim.models import word2vec
import logging
#logging.basicConfig(format='%(asctime)s : %(levelname)s : %(message)s', level=logging.INFO)
#sentences = word2vec.LineSentence('segment_result_lined')
#model = word2vec.Word2Vec(sentences, size=200, workers=4, iter=20)
#model.save("word_vec_model/model")
model_2 = word2vec.Word2Vec.load("word_vec_model/model")
y = model_2.most_similar(u"学习", topn=10)
for (word, score) in y:
print word
print score
#print model_2.syn0norm[model_2.vocab[u"小兔"].index]
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。