1 Star 0 Fork 2

Scorpio/ChatBotCourse

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
gensim_word2vec.py 536 Bytes
一键复制 编辑 原始数据 按行查看 历史
lichuang 提交于 2016-10-16 17:36 . add gensim word2vec
# 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]
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/scorpiocrt/ChatBotCourse.git
git@gitee.com:scorpiocrt/ChatBotCourse.git
scorpiocrt
ChatBotCourse
ChatBotCourse
master

搜索帮助