微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

python-gensim-Word2vec在现有模型上继续训练-AttributeError:“ Word2Vec”对象没有属性“ compute_loss”

我正在尝试继续在现有模型上进行训练,

model = gensim.models.Word2Vec.load('model/corpus.zhwiki.word.model')
more_sentences = [['Advanced', 'users', 'can', 'load', 'a', 'model', 'and', 'continue', 'training', 'it', 'with', 'more', 'sentences']]    
model.build_vocab(more_sentences, update=True)
model.train(more_sentences, total_examples=model.corpus_count, epochs=model.iter)

但最后一行出现错误

AttributeError:’Word2Vec’对象没有属性’compute_loss’

一些帖子说,这是由于使用了较早版本的gensim引起的,我尝试在加载现有模型之后且在train()之前添加它.

model.compute_loss = False

之后,它没有给我AttributeError,但是model.train()的输出为0,并且模型没有使用新的句子进行训练.

enter image description here

如何解决这个问题呢?提前致谢.

解决方法:

这是我继续训练模型的方法

# training_data: initial training data. contain list of tokenized sentences
model = Word2Vec(training_data, size=50, window=5, min_count=10, workers=4)

# datasmall: more sentences
# total_examples: number of additional sentence
# epochs: provide your current epochs. model.epochs is ok 
model.train(datasmall, total_examples=len(datasmall), epochs=model.epochs)

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐