TypeError:为参数'dictionary'获取了多个值

问题描述 投票:0回答:1

我读了其他被问及之前被问过这个错误的问题。但是我仍然没有得到我犯错的地方。当我调用该函数时我得到了这个错误。我在这个论坛上很新,任何帮助解决我的问题都将受到赞赏。我的代码也是如此

def lda_train(self, documents):
        # create dictionary
        dictionary= corpora.Dictionary(documents)
        dictionary.compactify()
        dictionary.save(self.DICTIONARY_FILE)  # store the dictionary, for future reference
        print ("============ Dictionary Generated and Saved ============")

        ############# Create Corpus##########################

        corpus = [dictionary.doc2bow(text) for text in documents]
        print('Number of unique tokens: %d' % len(dictionary))
        print('Number of documents: %d' % len(corpus))
        return dictionary,corpus

def compute_coherence_values(dictionary,corpus,documents,  limit, start=2, step=3):
        num_topics = 10
        coherence_values = []
        model_list = []
        for num_topics in range(start, limit, step):
            lda_model = gensim.models.ldamodel.LdaModel(corpus=corpus,id2word=dictionary, num_topics=num_topics,  random_state=100, alpha='auto')
            model_list.append(model)
            coherencemodel = CoherenceModel(model=model, texts=texts, dictionary=dictionary, coherence='c_v')
            coherence_values.append(coherencemodel.get_coherence())
        return model_list, coherence_values

当我通过使用此代码在main中调用此函数时:

if __name__ == '__main__':
    limit=40
    start=2
    step=6
    obj = LDAModel()
    lda_input = get_lda_input_from_corpus_folder('./dataset/TRAIN')
    dictionary,corpus =obj.lda_train(lda_input)
    model_list, coherence_values = obj.compute_coherence_values(dictionary=dictionary,corpus=corpus, texts=lda_input,  start=2, limit=40, step=6)

我收到一条错误消息:

 model_list, coherence_values=obj.compute_coherence_values(dictionary=dictionary,corpus=corpus, texts=lda_input,  start=2, limit=40, step=6) 
TypeError: compute_coherence_values() got multiple values for argument 'dictionary'
python python-3.x typeerror lda
1个回答
3
投票

TL; DR

更改

def compute_coherence_values(dictionary, corpus, documents, limit, start=2, step=3)

def compute_coherence_values(self, dictionary, corpus, documents, limit, start=2, step=3)

您忘记将self作为第一个参数传递,因此实例作为dictionary参数传递,但您也将dictionary作为显式关键字参数传递。

这种行为很容易复制:

class Foo:
   def bar(a):
       pass

Foo().bar(a='a')
TypeError: bar() got multiple values for argument 'a'
© www.soinside.com 2019 - 2024. All rights reserved.