如何修复 spaCy en_model 与当前 spaCy 版本 (2.3.2) 不兼容的问题?
How to fix spaCy en_model incompatible with current spaCy version (2.3.2)?
当我成为 运行 我的 NER 模型时,我得到:
UserWarning: [W031] Model 'en_model' (0.0.0) requires spaCy v2.2 and is incompatible with the current spaCy version (2.3.2)
请告知我该如何解决?
Python 3.7.9,spaCy 2.3.2,Ubuntu 18.04.
通过将 spaCy 降级到 2.2.4 解决。
pip3 install spacy==2.2.4
当我成为 运行 我的 NER 模型时,我得到:
UserWarning: [W031] Model 'en_model' (0.0.0) requires spaCy v2.2 and is incompatible with the current spaCy version (2.3.2)
请告知我该如何解决?
Python 3.7.9,spaCy 2.3.2,Ubuntu 18.04.
通过将 spaCy 降级到 2.2.4 解决。
pip3 install spacy==2.2.4