Reputation: 488
I am experimenting with topic modelling in Gensim and SciKit learn (Python 3) and would like to know more about adjusting hyperparamters in either package.
I found some related discussions on GITHUB, e.g. "optimize hyperparameters as part of LDA training", but no complete documentation.
I am not even sure hyperparametre optimisation is at all possible in SciKit learn.
I am very grateful for links or book recommendations.
Upvotes: 1
Views: 1753
Reputation: 77
Refer this link for the different hyperparameters of LDA
https://radimrehurek.com/gensim/models/ldamodel.html
You can try using GridSearch or RandomSearch for hypertuning
Upvotes: 1