Created
August 10, 2022 04:12
-
-
Save ecdedios/241c63425e9687b11e92d4fbaa64ce3e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
plot_model(lda, plot='topic_distribution') | |
plot_model(lda, plot='topic_model') | |
plot_model(lda, plot='wordcloud', topic_num = 'Topic 5') | |
plot_model(lda, plot='frequency', topic_num = 'Topic 5') | |
plot_model(lda, plot='bigram', topic_num = 'Topic 5') | |
plot_model(lda, plot='trigram', topic_num = 'Topic 5') | |
plot_model(lda, plot='distribution', topic_num = 'Topic 5') | |
plot_model(lda, plot='sentiment', topic_num = 'Topic 5') | |
plot_model(lda, plot='tsne') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment