-
Hey Maarten, I hope you can help me with an issue I have when reloading my topic model. I saved my model using Pytorch with both ctf-idf and the embedding model saved as well. I'm on version 0.16.2 |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I believe that the representative documents are currently not saved for privacy reasons as they might contain sensitive data. Instead, I would advise saving them separately and then assigning them to |
Beta Was this translation helpful? Give feedback.
I believe that the representative documents are currently not saved for privacy reasons as they might contain sensitive data. Instead, I would advise saving them separately and then assigning them to
topic_model.representative_docs_
when loading the model. Other than that, you can re-calculate the representative documents with_extract_representative_docs
but do note that it is a private function which might change in future versions.