这里有一个类似的问题Gensim Doc2Vec Exception AttributeError: 'str' object has no attribute 'words',但它没有得到任何有用的答案。
我正在尝试在 20newsgroups 语料库上训练 Doc2Vec。这是我构建词汇的方法:
from sklearn.datasets import fetch_20newsgroups
def get_data(subset):
newsgroups_data = fetch_20newsgroups(subset=subset, remove=('headers', 'footers', 'quotes'))
docs = []
for news_no, news in enumerate(newsgroups_data.data):
tokens = gensim.utils.to_unicode(news).split()
if len(tokens) == 0:
continue
sentiment = newsgroups_data.target[news_no]
tags = ['SENT_'+ str(news_no), str(sentiment)]
docs.append(TaggedDocument(tokens, tags))
return docs
train_docs = get_data('train')
test_docs = get_data('test')
alldocs = train_docs + test_docs
model = Doc2Vec(dm=dm, size=size, window=window, alpha = alpha, negative=negative, sample=sample, min_count = min_count, workers=cores, iter=passes)
model.build_vocab(alldocs)
然后我训练模型并保存结果:
model.train(train_docs, total_examples = len(train_docs), epochs = model.iter)
model.train_words = False
model.train_labels = True
model.train(test_docs, total_examples = len(test_docs), epochs = model.iter)
model.save(output)
当我尝试加载模型时出现问题: 屏幕
我试过了:
使用 LabeledSentence 而不是 TaggedDocument
产生 TaggedDocument 而不是将它们附加到列表中
将 min_count 设置为 1,因此不会忽略任何单词(以防万一)
问题也出现在 python2 和 python3 上。
请帮我解决这个问题。