Can I reuse the same pretrained model on a different dataset but of the same domain?Say I trained a top2vec model on a dataset with 26k records on artificial intelligence. Now can I reuse this same model to get the topics on a smaller dataset on artificial intelligence by calling get_document_topics()?
I am asking this because, when I looked through your source code, it seems like the pretrained model has already saved each document id, and then it matches the document id saved in the model with the new dataset. I would appreciate some clarification! thanks
Can I reuse the same pretrained model on a different dataset but of the same domain?Say I trained a top2vec model on a dataset with 26k records on artificial intelligence. Now can I reuse this same model to get the topics on a smaller dataset on artificial intelligence by calling get_document_topics()?
I am asking this because, when I looked through your source code, it seems like the pretrained model has already saved each document id, and then it matches the document id saved in the model with the new dataset. I would appreciate some clarification! thanks