spacy Can't find model 'en_core_web_sm' on windows 10 and Python 3.5.3 :: Anaconda custom (64-bit)

前端 未结 15 1072
傲寒
傲寒 2020-12-08 09:40

what is difference between spacy.load(\'en_core_web_sm\') and spacy.load(\'en\')? This link explains different model sizes. But i am still not clea

15条回答
  •  没有蜡笔的小新
    2020-12-08 10:14

    Initially I downloaded two en packages using following statements in anaconda prompt.

    python -m spacy download en_core_web_lg
    python -m spacy download en_core_web_sm
    

    But, I kept on getting linkage error and finally running below command helped me to establish link and solved error.

    python -m spacy download en
    

提交回复
热议问题