UserWarning: The gensim.similarities.levenshtein submodule is disabled, because the optional Levenshtein package <https://pypi.org/project/python-Levenshtein/> is unavailable. Install Levenhstein (e.g. `pip install python-Levenshtein`) to suppress this warning. warnings.warn(msg) 2023-06-06 16:37:17,954 - INFO - running weijibaike.py: parse the chinese corpus 2023-06-06 16:37:17,954 - INFO - The lemmatize parameter is no longer supported. If you need to lemmatize, use e.g. <https://github.com/clips/pattern>. Perform lemmatization as part of your tokenization function and pass it as the tokenizer_func parameter to this initializer.报错原因
时间: 2024-03-09 15:50:56 浏览: 181
这个错误是因为gensim.similarities.levenshtein子模块需要一个名为python-Levenshtein的可选包。如果您不安装这个可选包,它将被禁用,并会显示上述警告消息。
如果您需要使用这个子模块,可以按照警告消息中提供的建议安装python-Levenshtein包来解决问题:
```
pip install python-Levenshtein
```
如果您不需要使用这个子模块,可以忽略警告消息。
相关问题
userwarning: the gensim.similarities.levenshtein submodule is disabled, because the optional levenshtein package <https://pypi.org/project/python-levenshtein/> is unavailable. install levenhstein (e.g. `pip install python-levenshtein`) to suppress this warning. warnings.warn(msg)
这是Gensim模块给出的警告信息,意思是说如果不安装`python-levenshtein`包,就无法使用Gensim的`similarities.levenshtein`子模块。要解决这个警告,需要使用`pip install python-levenshtein`命令安装`python-levenshtein`包。
/root/miniconda3/lib/python3.8/site-packages/librosa/core/audio.py:162: UserWarning: PySoundFile failed. Trying audioread instead. warnings.warn("PySoundFile failed. Trying audioread instead.")
这个警告是由Librosa库的audio.py文件中的代码引起的。该警告表明,在PySoundFile库无法使用的情况下,Librosa库将尝试使用audioread库来读取音频文件。PySoundFile库是Librosa库的一个可选依赖项,用于支持更多的音频文件格式。如果您的系统上没有安装PySoundFile,则Librosa库将使用audioread库来读取音频文件。您可以忽略这个警告,因为Librosa库仍然可以正常工作。如果您想解决这个警告,您可以安装PySoundFile库,方法是在终端中运行以下命令:pip install pysoundfile。然后,重新运行您的代码,这个警告应该不再出现了。
阅读全文