Hi, I’m trying LDA tutorial https://pyro.ai/examples/lda.html , how could I return not only topics with assigned words, but also documents passed to a model with assigned discovered topics?
like in gensim it’s just lda_model[corpus[0]]
which provides with e.g. [(10, 0.998)]
where first document is 99.8% about topic 10
what is the analogous for that in pyro?