close

[Solved] No module named pyLDAvis

Hello Guys, How are you all? Hope You all Are Fine. I want to use pyLDAvis but for some reason, I cant import it. It gives me No module named pyLDAv is Python. So Here I am Explain to you all the possible solutions here.

Without wasting your time, Let’s start This Article to Solve This Error.

How No module named pyLDAvis Error Occurs ?

I want to use pyLDAvis. It is installed but for some reason, I can not import it. Installing pyLDAvis returns the message ‘requirement already satisfied’. But when I use it import it. But it gives me following error.

No module named pyLDAvis

How To Solve No module named pyLDAvis Error ?

  1. How To Solve No module named pyLDAvis Error?

    To Solve No module named pyLDAvis Error just pyLDAvis gensim name changed. When I use gensim_models rather than gensim the interactive viz works.

Solution 1

pyLDAvis gensim name changed.

import pyLDAvis
import pyLDAvis.gensim_models as gensimvis
pyLDAvis.enable_notebook()

# feed the LDA model into the pyLDAvis instance
lda_viz = gensimvis.prepare(ldamodel, corpus, dictionary)

Solution 2

This is working.

!pip install pyLDAvis

import pyLDAvis
import pyLDAvis.gensim_models

pyLDAvis.enable_notebook()
vis = pyLDAvis.gensim_models.prepare(ldamodel, doc_term_matrix, dictionary)
vis

Summery

It’s all About this issue. Hope all solution helped you a lot. Comment below Your thoughts and your queries. Also, Comment below which solution worked for you?

Also Read

1 thought on “[Solved] No module named pyLDAvis”

Leave a Comment