尝试更新 gensim 的 LdaModel 时出现 IndexError

IndexError when trying to update gensim's LdaModel

我在尝试更新我的 gensim LdaModel 时遇到以下错误:

IndexError: index 6614 is out of bounds for axis 1 with size 6614

我查过为什么其他人在this thread上有这个问题,但我从头到尾使用的是同一个字典,这是他们的错误。

因为我有一个大数据集,我正在逐块加载它(使用 pickle.load)。由于这段代码,我正在以这种方式迭代地构建字典:

 fr_documents_lda = open("documents_lda_40_rails_30_ruby_full.dat", 'rb')
 dictionary = Dictionary()
 chunk_no = 0
 while 1:
     try:
         t0 = time()
         documents_lda = pickle.load(fr_documents_lda)
         chunk_no += 1
         dictionary.add_documents(documents_lda)
         t1 = time()
         print("Chunk number {0} took {1:.2f}s".format(chunk_no, t1-t0))
     except EOFError:
         print("Finished going through pickle")
         break

为整个数据集构建后,我将以相同的方式迭代地训练模型:

fr_documents_lda = open("documents_lda_40_rails_30_ruby_full.dat", 'rb')
first_iter = True
chunk_no = 0
lda_gensim = None
while 1:
    try:
        t0 = time()
        documents_lda = pickle.load(fr_documents_lda) 
        chunk_no += 1
        corpus = [dictionary.doc2bow(text) for text in documents_lda]
        if first_iter:
            first_iter = False
            lda_gensim = LdaModel(corpus, num_topics=no_topics, iterations=100, offset=50., random_state=0, alpha='auto')
        else:
            lda_gensim.update(corpus)
        t1 = time()
        print("Chunk number {0} took {1:.2f}s".format(chunk_no, t1-t0))
    except EOFError:
        print("Finished going through pickle")
        break

我还尝试在每个块更新字典,即

dictionary.add_documents(documents_lda)

就在之前

corpus = [dictionary.doc2bow(text) for text in documents_lda]

在最后一段代码中。最后,我尝试将 doc2bow 的 allow_update 参数设置为 True。没有任何效果。

仅供参考,我最终字典的大小是 85k。仅从第一个块构建的字典大小为 10k。错误发生在第二次迭代时,当它在 else 条件中传递时,当调用更新方法时。

expElogbetad = self.expElogbeta[:, ids] 引发错误 , 被 gamma, sstats = self.inference(chunk, collect_sstats=True) 调用,它自己被 gammat = self.do_estep(chunk, other) 调用,它自己被 lda_gensim.update(corpus).

调用

有没有人知道如何解决这个问题,或者发生了什么事?

提前致谢。

解决方案是简单地使用参数 id2word = dictionary.

初始化 LdaModel

如果您不这样做,它会假设您的词汇量是您对其进行训练的第一组文档的词汇量,并且无法更新它。事实上,它设置它的 num_terms 值到一次 there, and never updates it afterwards (you can verify in the update 函数的 id2word 的长度。