본문 바로가기
백엔드/Python

No module named 'pyLDAvis.gensim'​

by 작은소행성 2021. 10. 29.

 

import pyLDAvis.gensim as gensimvis

다음 코드를 실행하면 모듈이름이 없다고 나온다.

 

 

 

pyLDAvis gensim 이름이 변경된 것으로 위의 코드 대신에 아래 코드를 사용하면 된다. 

import pyLDAvis.gensim_models as gensimvis

 

 

 

최근 코드 정보를 보고싶으면 아래 페이지에서 확인할 수 있다. 

 

https://github.com/bmabey/pyLDAvis#:%7E:text=pyLDAvis%20is%20designed%20to%20help,an%20interactive%20web%2Dbased%20visualization.&text=Note%3A%20LDA%20stands%20for%20latent%20Dirichlet%20allocation.

 

GitHub - bmabey/pyLDAvis: Python library for interactive topic model visualization. Port of the R LDAvis package.

Python library for interactive topic model visualization. Port of the R LDAvis package. - GitHub - bmabey/pyLDAvis: Python library for interactive topic model visualization. Port of the R LDAvis pa...

github.com

 

반응형