As I understand, if i'm training a LDA model over a corpus where the size of the dictionary is say 1000 and no of topics (K) = 10, for each word in the dictionary I should have a vector of size 10 where each position in the vector is the probability of that word belongs to that particular topic, right?
So my question is given a word, what is the probability of that word belongs to to topic k where k could be from 1 to 10, how do I get this value in the gensim lda model?
I was using get_term_topics
method but it doesn't output all the probabilities for all the topics. For eg.,
lda_model1.get_term_topics("fun")
[(12, 0.047421702085626238)],
but I want to see what is the prob that "fun" could be in all the other topics as well?