NLP - Topic Modeling
You run the following code but get an error:
AttributeError: 'LdaModel' object has no attribute 'show_topics'. What is the likely cause?
ldamodel = gensim.models.LdaModel(corpus, num_topics=3, id2word=dictionary) print(ldamodel.show_topics())
