ericproffitt / TopicModelsVB.jl

A Julia package for variational Bayesian topic modeling.
Other
81 stars 8 forks source link

What is the fields model.topics? Is it possible to get highly probable doc for each topics? #29

Closed ValeriiBaidin closed 4 years ago

ValeriiBaidin commented 4 years ago

What is the field model.topics? Is it possible to get a highly probable doc for each topic?

Thank you in advance.

ericproffitt commented 4 years ago

model.topics is the ranking of the model.corp.vocab keys for each topic.

For getting highly probable documents for a topic, you want to look at the topicdist of the document.

There is no functionality or data which ranks the documents for each topic.

ValeriiBaidin commented 4 years ago

model.topics is the ranking of the corp.vocab keys for each topic.

For getting highly probable documents for a topic, you want to look at the topicdist of the document.

There is no functionality or data which ranks the documents for each topic.

thank you so much