Top2Vec
Top2Vec copied to clipboard
How to reduce the number of topcis
Hi I'd like to know how to reduce the number of topics. Is there any function in top2vec that I can use?
if you say reduce topics in trainng step, you need to adjust hyperparameter of UMAP and HDBSCAN used in Top2Vec Model I think,
if you want to merge topics in a trained model, just use hierarchical_topic_reduction
function, it will find topic with smallest size and merge it with its nearst topic untill to the number of topics you want.