You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ python
Python 3.7.3 (default, Apr 24 2019, 15:29:51) [MSC v.1915 64 bit (AMD64)] :: Anaconda, Inc. on win32
Warning:
This Python interpreter is in a conda environment, but the environment has
not been activated. Libraries may fail to load. To activate this environment
please see https://conda.io/activation
Type "help", "copyright", "credits" or "license"for more information.
>>> import lda2vec
Traceback (most recent call last):
File "<stdin>", line 1, in<module>
File "D:\work\lda2vec\lda2vec\__init__.py", line 1, in<module>
import dirichlet_likelihood
ModuleNotFoundError: No module named 'dirichlet_likelihood'
>>> exit()
You need to replace every import line as "import blabla" by "from . import blabla" in init.py.
Then there is more few error :
• In preprocess.py replace : "from spacy.en import English" by : "import spacy from spacy.lang.en import English"
• Add parenthesis around print function in :
• file corpus.py line 579
• file topics.py line 106
hi, l hace installed lda2vec by "pip setup,py install"
but when l run code,l got this errors
@cemoody @cesarsalgado @intohole @matheusportela
The text was updated successfully, but these errors were encountered: