-
Notifications
You must be signed in to change notification settings - Fork 17
Open
Labels
bugSomething isn't workingSomething isn't working
Description
I have trained LDA model using Gensim, and now want to use topicwizard for visualization.
But even after following the Readme for using Gensim topic model case, it doesn't seem to work.
Note: I am doing in Nepali Language. The lda model is also trained in Nepali Language.
Code :
from gensim.corpora.dictionary import Dictionary
from topicwizard.compatibility import gensim_pipeline
import topicwizard
dictionary, and lda_model are loaded from my training by use of Gensim.
I have checked and there is no problem in any of that.
dictionary_form_data = Dictionary(dictionary)
pipeline = gensim_pipeline(dictionary_form_data, model=lda_model)
corpus = [" ".join(tokenized_news) for tokenized_news in dictionary]
no problem till now, as corpus is shown as:
Now fitting the corpus
printing topic_names:
So, everything seems to be fine but when doing visualization:
So, what is the problem here? Is it that its not working in Gensim topic model ?
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working



