Super learner
This user is a Super Learner. To become a Super Learner, you need to reach Level 8.
Last answered:

16 Mar 2024

Posted on:

12 Sept 2023

0

Loading spacy models

I had an error running this line: nlp = spacy.load("en_core_web_sm")

I don't remember where it was showed in the tutorial but to successfully run that line you need to download that spacy model.

I found this on their documentation: python3 -m spacy download en_core_web_sm

3 answers ( 0 marked as helpful)
Super learner
This user is a Super Learner. To become a Super Learner, you need to reach Level 8.
Posted on:

15 Sept 2023

1

HI Asena


Please,install spacy and en_core_web_sm in python environment

pip install spacy

python -m spacy download en_core_web_sm


Hope , it will sort out your issue.

Super learner
This user is a Super Learner. To become a Super Learner, you need to reach Level 8.
Posted on:

04 Oct 2023

0

HI Asena


Please,install spacy and en_core_web_sm in python environment

pip install spacy

!python -m spacy download en_core_web_sm


Hope , it will sort out your issue.


Posted on:

16 Mar 2024

0

This was helpful. Thanks

Submit an answer