noteb中lda2vec模块中缺少属性

2024-04-26 22:46:58 发布

您现在位置:Python中文网/ 问答频道 /正文

jupyter笔记本无法导入dirichlet_可能性.py来自lda2vec。
此py文件存在于github中,用于当前lda2vec。在

我安装了模块并打开了工作簿,然后尝试运行它。我怀疑我的问题有一个很简单的原因。在

笔记本是 https://github.com/cemoody/lda2vec/blob/master/examples/twenty_newsgroups/lda2vec/lda2vec.ipynb

当我在python命令行(在当前环境中)尝试下面的命令时,它没有给出下面的错误,而是需要我安装的keras。在命令行上,它表示无法导入预处理。在

uname -a
Linux ubuntu 4.18.0-15-generic #16~18.04.1-Ubuntu SMP Thu Feb 7 14:06:04 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux
sudo apt-get install python3-venv
python3.6 -m venv .env  
source .env/bin/activate
pip install --upgrade pip
pip install jupyter
pip install lda2vec
^{pr2}$
---------------------------------------------------------------------------
AttributeError                            Traceback (most recent call last)
<ipython-input-4-2b87256bea6b> in <module>
----> 1 from lda2vec import preprocess, Corpus
      2 import matplotlib.pyplot as plt
      3 import numpy as np
      4 get_ipython().run_line_magic('matplotlib', 'inline')
      5 

~/.env/lib/python3.6/site-packages/lda2vec/__init__.py in <module>
----> 1 import lda2vec.dirichlet_likelihood as dirichlet_likelihood
      2 import lda2vec.embedding_mixture as embedding_mixture
      3 from lda2vec.Lda2vec import Lda2vec as model
      4 import lda2vec.word_embedding as word_embedding
      5 import lda2vec.nlppipe as nlppipe

AttributeError: module 'lda2vec' has no attribute 'dirichlet_likelihood'
python
from lda2vec import preprocess, Corpus
Using TensorFlow backend.
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: cannot import name 'preprocess'

编辑

我通过做这些事情来工作 -获取ubuntu-18.04.2-desktop-amd64.iso -更改了hyper-V的BIOS虚拟化设置吗 -在VMWare中创建虚拟机 -将内存增加到3G -给它40克磁盘

然后在候机楼里

sudo apt install python2.7
sudo apt install python-pip
pip install virtualenv
Mkdir 2.7env
Cd 2.7env
python2.7 -m venv .env
python2.7 -m virtualenv .env
source .env/bin/activate
pip install --upgrade pip
pip install jupyter
pip install -U spacy
python -m spacy download en
pip install wheel nltk gensim pyLDAvis lda2vec
sudo apt install git
git clone https://github.com/cemoody/lda2vec.git
cp ~/lda2vec/build/lib.linux-x86_64-2.7/lda2vec/corpus.py ~/2.7env/.env/lib/python2.7/site-packages/lda2vec/Corpus.py
cp ~/lda2vec/build/lib.linux-x86_64-2.7/lda2vec/preprocess.py ~/2.7env/.env/lib/python2.7/site-packages/lda2vec/preprocess.py
python -m pip install ipykernel
python -m ipykernel install --user
python lda2vec/examples/twenty_newsgroups/lda2vec/lda2vec_run.py
cd lda2vec/examples/twenty_newsgroups/lda2vec/
jupyter notebook
change the kernel to 2

在firefox open lda2中矢量ipynb在

如上所述,我现在正试图让它重新创建二十个新闻组npz文件,这样我就可以最终提供我自己的内容了。如果有人能更好地理解这一点,我怀疑尝试在内存较小的VM上运行这个脚本可能是个问题,但错误报告如下

(.env) craig@ubuntu:~/whcjimmy/lda2vec/examples/twenty_newsgroups/data$ python preprocess.py 
Traceback (most recent call last):
  File "preprocess.py", line 31, in <module>
    n_threads=4)
  File "/home/craig/whcjimmy/.env/lib/python3.6/site-packages/lda2vec-0.1-py3.6.egg/lda2vec/preprocess.py", line 104, in tokenize
    vocab = {v: nlp.vocab[v].lower_ for v in uniques if v != skip}
  File "/home/craig/whcjimmy/.env/lib/python3.6/site-packages/lda2vec-0.1-py3.6.egg/lda2vec/preprocess.py", line 104, in <dictcomp>
    vocab = {v: nlp.vocab[v].lower_ for v in uniques if v != skip}
  File "vocab.pyx", line 242, in spacy.vocab.Vocab.__getitem__
  File "lexeme.pyx", line 44, in spacy.lexeme.Lexeme.__init__
  File "vocab.pyx", line 157, in spacy.vocab.Vocab.get_by_orth
  File "strings.pyx", line 138, in spacy.strings.StringStore.__getitem__
KeyError: "[E018] Can't retrieve string for hash '9243420536193520'. This usually refers to an issue with the `Vocab` or `StringStore`."

Tags: installpipinpyimportenvspacylib
1条回答
网友
1楼 · 发布于 2024-04-26 22:46:58

好吧,我有办法了。问题是

  1. 选择合适的python来运行一个4年前的git项目。Python2.7。在
  2. 检查已安装模块是否具有来自git repo的代码
  3. 在python终端中运行该问题
  4. 复制和编辑python文件转到3

上面的一个问题是对依赖项的API进行更改。 ImportError: No module named 'spacy.en' 最初的问题很可能是由于我不熟悉的git或python造成的。但是git项目的自测都失败了,它的构建也失败了。 但我有我的jupyter笔记本在运行并产生令人信服的结果。在

相关问题 更多 >