gensim - 模块 'smart_open' 没有属性 'local_file'

标签 gensim

我写了这段代码

import gensim
from gensim import corpora
AttributeError                            Traceback (most recent call last)
<ipython-input-29-a29f5eabd8f4> in <module>
     85 # use the following command in anaconda prompt with the admionistrator privileges to install gensim
     86 # conda install -c conda-forge gensim
---> 87 import gensim
     88 from gensim import corpora
     89 

~\Anaconda3\lib\site-packages\gensim\__init__.py in <module>
      3 """
      4 
----> 5 from gensim import parsing, corpora, matutils, interfaces, models, similarities, summarization, utils  # noqa:F401
      6 import logging
      7 

~\Anaconda3\lib\site-packages\gensim\parsing\__init__.py in <module>
      2 
      3 from .porter import PorterStemmer  # noqa:F401
----> 4 from .preprocessing import (remove_stopwords, strip_punctuation, strip_punctuation2,  # noqa:F401
      5                             strip_tags, strip_short, strip_numeric,
      6                             strip_non_alphanum, strip_multiple_whitespaces,

~\Anaconda3\lib\site-packages\gensim\parsing\preprocessing.py in <module>
     40 import glob
     41 
---> 42 from gensim import utils
     43 from gensim.parsing.porter import PorterStemmer
     44 

~\Anaconda3\lib\site-packages\gensim\utils.py in <module>
     43 from six.moves import range
       44 
---> 45 from smart_open import open
     46 
     47 from multiprocessing import cpu_count

~\Anaconda3\lib\site-packages\smart_open\__init__.py in <module>
     26 from smart_open import version
     27 
---> 28 from .smart_open_lib import open, parse_uri, smart_open, register_compressor
     29 from .s3 import iter_bucket as s3_iter_bucket
     30 

~\Anaconda3\lib\site-packages\smart_open\smart_open_lib.py in <module>
     35 
     36 from smart_open import compression
---> 37 from smart_open import doctools
     38 from smart_open import transport
     39 from smart_open import utils

~\Anaconda3\lib\site-packages\smart_open\doctools.py in <module>
     19 
     20 from . import compression
---> 21 from . import transport
     22 
     23 PLACEHOLDER = '    smart_open/doctools.py magic goes here'

~\Anaconda3\lib\site-packages\smart_open\transport.py in <module>
     20 NO_SCHEME = ''
     21 
---> 22 _REGISTRY = {NO_SCHEME: smart_open.local_file}
     23 
     24 

AttributeError: module 'smart_open' has no attribute 'local_file'

我收到了错误:模块'smart_open'没有属性'local_file'
我该如何解决?

最佳答案

我将 smart_open 降级到 1.9.0
并使 gensim 降级到 3.4.0
这个对我有用。

关于gensim - 模块 'smart_open' 没有属性 'local_file',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61182206/

相关文章:

python - pycharm 无法识别“gensim”

python - 来自 `gensim` 的 LDA(潜在狄利克雷分配)推理如何处理新数据?

python - 将 word2vec 模型查询的结果保存在 csv 文件中?

python - 在 scikit-learn 管道中使用 Word2Vec

python - 来自gensim的单词共现矩阵

ubuntu - 无法使用 Ubuntu16.04 和 anaconda 安装 gensim

python - 是否有用于动态主题模型的有效 python 库,最好是扩展 Gensim?

python - 如何从 gensim 模型中的 Doc2Vec 相似度分数访问文档详细信息?

python - 理解gensim word2vec的most_similar

python - Doc2vec 超越初学者指导