我正在关注Rasa Core“构建简单的Bot”教程。 (https://core.rasa.com/tutorial_basics.html)它需要安装SpaCy语言模型:
python -m spacy下载zh_cn_web_md
但是,我收到“ AttributeError:模块'thinc.linalg'没有属性'Mat'”
你知道是什么原因造成的吗?
答案 0 :(得分:1)
最新Spacy对 thinc 的要求为:
thinc>=6.10.1,<6.11.0
再次检查requirements.txt,并检查通过pip列表安装了哪些模块。如果问题是因为Thinc版本不正确,请运行
pip uninstall thinc
pip install thinc==6.10.1