lda2vec
lda2vec copied to clipboard
ImportError: cannot import name LDA2Vec
Thanks for this great library! However, after python setup.py install
, I cannot import the core object LDA2Vec. I also didn't see any files with the name LDA2Vec in the source code.
The same to me.
when I import lda2vec
ImportError: No module named 'dirichlet_likelihood'
In every init file you need to add from
from lda2vec import ...
Hi, is there any solutions? I have the same problem: either No module named 'dirichlet_likelihood' or No module named 'lda2vec'
Run python setup.py install under the lda2vec/ directory I'm not sure about windows system, u may want to try setup.py install from your cmd under the lda2vec dir
Run python setup.py install under the lda2vec/ directory I'm not sure about windows system, u may want to try setup.py install from your cmd under the lda2vec dir
I just can't execute this python setup.py install
. A lot of C++ errors occured: https://github.com/cemoody/lda2vec/issues/86
you all need to do first :
python setup.py build
then
python setup.py install
you all need to do first :
python setup.py build
thenpython setup.py install
I have done that and it still says No module named 'lda2vec'.