We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
hello,
I have installed pyLDAvis with pip as mentioned in the documentation. I successfully imported import pyLDAvis import pyLDAvis.gensim
however when I would like to importe the pyLDAvis.sklearn I got this error:
ModuleNotFoundError: No module named 'pyLDAvis.sklearn'
pyLDAvis.version '3.4.0'
can you help me please?
The text was updated successfully, but these errors were encountered:
#245
Sorry, something went wrong.
pip install pyldavis==3.2.2
per #245
pyLDAvis v 3.4.0 no longer has the file sklearn.py in the pip package.
sklearn.py
Replace any logic involving
import pyLDAvis.sklearn ... pyLDAvis.sklearn.prepare
with
import pyLDAvis.lda_model ... pyLDAvis.lda_model.prepare
Thanks a lot! I tried lda_model and succeeded
lda_model
No branches or pull requests
hello,
I have installed pyLDAvis with pip as mentioned in the documentation.
I successfully imported
import pyLDAvis
import pyLDAvis.gensim
however when I would like to importe the pyLDAvis.sklearn I got this error:
ModuleNotFoundError: No module named 'pyLDAvis.sklearn'
pyLDAvis.version
'3.4.0'
can you help me please?
The text was updated successfully, but these errors were encountered: