当前位置:网站首页>Pyldavis installation and use | attributeerror: module 'pyldavis' has no attribute' gensim '| visual results are exported as separate web pages
Pyldavis installation and use | attributeerror: module 'pyldavis' has no attribute' gensim '| visual results are exported as separate web pages
2022-07-02 01:27:00 【Ye Tingyun】
pip install Put on the pyLDAvis
pip install pyLDAvis -i http://pypi.douban.com/simple --trusted-host
(base) C:\Users\Administrator>pip install pyLDAvis -i http://pypi.douban.com/simple --trusted-host pypi.douban.com
Looking in indexes: http://pypi.douban.com/simple
Collecting pyLDAvis
Downloading http://pypi.doubanio.com/packages/03/a5/15a0da6b0150b8b68610cc78af80364a80a9a4c8b6dd5ee549b8989d4b60/pyLDAvis-3.3.1.tar.gz (1.7 MB)
|████████████████████████████████| 1.7 MB 6.8 MB/s
Installing build dependencies ... done
Getting requirements to build wheel ... done
Installing backend dependencies ... done
Preparing wheel metadata ... done
Requirement already satisfied: pandas>=1.2.0 in d:\python\anaconda3\lib\site-packages (from pyLDAvis) (1.3.4)
Requirement already satisfied: future in d:\python\anaconda3\lib\site-packages (from pyLDAvis) (0.18.2)
Requirement already satisfied: numpy>=1.20.0 in d:\python\anaconda3\lib\site-packages (from pyLDAvis) (1.20.3)
Requirement already satisfied: scipy in c:\users\administrator\appdata\roaming\python\python38\site-packages (from pyLDAvis) (1.6.0)
Requirement already satisfied: joblib in d:\python\anaconda3\lib\site-packages (from pyLDAvis) (1.0.1)
Requirement already satisfied: gensim in d:\python\anaconda3\lib\site-packages (from pyLDAvis) (3.8.3)
Requirement already satisfied: scikit-learn in d:\python\anaconda3\lib\site-packages (from pyLDAvis) (0.23.1)
Requirement already satisfied: jinja2 in d:\python\anaconda3\lib\site-packages (from pyLDAvis) (2.7.2)
Requirement already satisfied: setuptools in d:\python\anaconda3\lib\site-packages (from pyLDAvis) (49.2.0.post20200714)
Collecting sklearn
Downloading http://pypi.doubanio.com/packages/1e/7a/dbb3be0ce9bd5c8b7e3d87328e79063f8b263b2b1bfa4774cb1147bfcd3f/sklearn-0.0.tar.gz (1.1 kB)
Requirement already satisfied: numexpr in d:\python\anaconda3\lib\site-packages (from pyLDAvis) (2.7.1)
Requirement already satisfied: funcy in d:\python\anaconda3\lib\site-packages (from pyLDAvis) (1.17)
Requirement already satisfied: pytz>=2017.3 in d:\python\anaconda3\lib\site-packages (from pandas>=1.2.0->pyLDAvis) (2020.1)
Requirement already satisfied: python-dateutil>=2.7.3 in d:\python\anaconda3\lib\site-packages (from pandas>=1.2.0->pyLDAvis) (2.8.1)
Requirement already satisfied: six>=1.5.0 in d:\python\anaconda3\lib\site-packages (from gensim->pyLDAvis) (1.15.0)
Requirement already satisfied: smart-open>=1.8.1 in d:\python\anaconda3\lib\site-packages (from gensim->pyLDAvis) (4.1.2)
Requirement already satisfied: Cython==0.29.14 in d:\python\anaconda3\lib\site-packages (from gensim->pyLDAvis) (0.29.14)
Requirement already satisfied: threadpoolctl>=2.0.0 in d:\python\anaconda3\lib\site-packages (from scikit-learn->pyLDAvis) (2.1.0)
Requirement already satisfied: markupsafe in d:\python\anaconda3\lib\site-packages (from jinja2->pyLDAvis) (2.0.1)
Building wheels for collected packages: pyLDAvis, sklearn
Building wheel for pyLDAvis (PEP 517) ... done
Created wheel for pyLDAvis: filename=pyLDAvis-3.3.1-py2.py3-none-any.whl size=136900 sha256=e23c194c0ef03967d487011208dede4141f5f6a163a77111283455f230c697fa
Stored in directory: c:\users\administrator\appdata\local\pip\cache\wheels\b5\ee\b2\29f82d7103ba90942d31cdeb29372b27fb74dbe7ff535cc081
Building wheel for sklearn (setup.py) ... done
Created wheel for sklearn: filename=sklearn-0.0-py2.py3-none-any.whl size=1320 sha256=9a20c412366931bdd7ca5bad4a82cdac502d9414a32a5320641b1898e633cd6e
Stored in directory: c:\users\administrator\appdata\local\pip\cache\wheels\c5\c2\a1\e36638731a4ac05326b1bf08abc0d79c19ba07700cf6b5d648
Successfully built pyLDAvis sklearn
Installing collected packages: sklearn, pyLDAvis
Successfully installed pyLDAvis-3.3.1 sklearn-0.0
I thought I could use it happily , However, an error is reported in the running code :
uninstall Just installed pyLDAvis==3.3.1
Install the specified version pyLDAvis==2.1.2.
pip install pyLDAvis==2.1.2 -i http://pypi.douban.com/simple --trusted-host pypi.douban.com
Or do not install the old version , Use the new version :
import pyLDAvis.gensim_models as gensimvis
from pyLDAvis import gensim
pyLDAvis.enable_notebook()
''' lda: Calculated topic model corpus: Document word frequency matrix dictionary: Word space '''
d = gensim.prepare(lda,corpus,dictionary)
d = gensimvis.prepare(lda,corpus,dictionary)
pyLDAvis.display(d) # Displayed in browser
# pyLDAvis.save_html(p, 'lda.html')
utilize pyLDAvis.save_html(p, ‘lda.html’) Method can save the visualization results as separate HTML file .
Refer to the :
- About python Package installation error solution ( With gensim、pyLDAvis For example )
- https://blog.csdn.net/qq_42841672/article/details/115703611
- take pyLDAvis The visualization results are exported as independent web pages
边栏推荐
- ECS project deployment
- Design and control of multi rotor aircraft (VII) -- sensor calibration and measurement model
- 8.8.4-PointersOnC-20220215
- Laravel artisan 常用命令
- 969 interlaced string
- No converter found for return value of type: class
- Global and Chinese markets for freight and logistics 2022-2028: Research Report on technology, participants, trends, market size and share
- 【疾病检测】基于BP神经网络实现肺癌检测系统含GUI界面
- 三分钟学会基础k线图知识
- Using tabbar in wechat applet
猜你喜欢
Exclusive delivery of secret script move disassembly (the first time)
游戏思考15:全区全服和分区分服的思考
卷積神經網絡(包含代碼與相應圖解)
Introduction to ffmpeg Lib
[IVX junior engineer training course 10 papers to get certificates] 03 events and guessing numbers games
How to compress video size while adding watermark with one click?
[IVX junior engineer training course 10 papers to get certificates] 0708 news page production
Entrepreneurship is a little risky. Read the data and do a business analysis
[image enhancement] vascular image enhancement based on frangi filter with matlab code
How does schedulerx help users solve the problem of distributed task scheduling?
随机推荐
Raspberry pie 4B learning notes - IO communication (1-wire)
Global and Chinese markets for freight and logistics 2022-2028: Research Report on technology, participants, trends, market size and share
MySQL application day02
6-2 vulnerability exploitation - inevitable problems of FTP
[IVX junior engineer training course 10 papers to get certificates] 01 learn about IVX and complete the New Year greeting card
Docker installing Oracle_ 11g
SAP ui5 beginner tutorial XXI - trial version of custom formatter of SAP ui5
Laravel artisan 常用命令
Liteos learning - first knowledge of development environment
Develop a simple login logic based on SSM
[IVX junior engineer training course 10 papers to get certificates] 0708 news page production
Global and Chinese markets for maritime services 2022-2028: Research Report on technology, participants, trends, market size and share
Design and implementation of radio energy transmission system
Look at the industrial Internet from a new perspective and seek the correct ways and methods of industrial Internet
ACM tutorial - quick sort (regular + tail recursion + random benchmark)
Global and Chinese markets for the application of artificial intelligence in security, public security and national security 2022-2028: Research Report on technology, participants, trends, market size
Tencent cloud techo youth dream campus trip into Wuhan University
A problem about function template specialization
6-3 vulnerability exploitation SSH environment construction
Hcip day 14 (MPLS protocol)