Using gensim I was able to extract topics from a set of documents in LSA but how do I access the topics generated from the LDA models?
gensim
When printing the
Are you using any logging? print_topics prints to the logfile as stated in the docs.
print_topics
As @mac389 says, lda.show_topics() is the way to go to print to screen.
lda.show_topics()