首页 > 其他 > 详细

RuntimeError: you must first build vocabulary before training the model

时间:2021-05-04 10:15:43      阅读:35      评论:0      收藏:0      [点我收藏+]

解决RuntimeError: you must first build vocabulary before training the model错误

查找解决方案,意思就是说你的数据集中的数量过少,解决方案有两种,扩大数据集的数量、另一个就是更改min_count的值例如:如果太少的话可以更改为

model=word2vec.Word2Vec(sentences, vector_size=100,min_count=1)
把这个更改了之后重新运行即可

RuntimeError: you must first build vocabulary before training the model

原文:https://www.cnblogs.com/1gaoyu/p/14728860.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!