How to get the topic probability for each document for topic modeling using LDA
问题 I use scikit-learn LDA to generate LDA model and after that I can get the topic-terms. I am wondering how can I get the probability of each topic for each document? 回答1: Use the transform method of the LatentDirichletAllocation class after fitting the model. It will return the document topic distribution. If you work with the example given in the documentation for scikit-learn's Latent Dirichlet Allocation, the document topic distribution can be accessed by appending the following line to the