I just study gensim for topic modeling. when I use
lda_model = gensim.models.ldamodel.LdaModel(...)
the result lda_model has two functions: get_topics() and get_document_topics(). I can find the topic-word and document-topics by them. But, I want to try:
hdp_lda_model = gensim.models.hdpmodel.HdpModel(...)
I can only find there is get_topics() in its result, no something like get_document_topics(). So I cannot find the relation of document and topics. But it should be somewhere. I read some instruction from https://radimrehurek.com/gensim/models/hdpmodel.html. But I did not find any (maybe I miss something?). So is there a function in hdp model, which is like get_document_topics() in lda model?