Super learner
This user is a Super Learner. To become a Super Learner, you need to reach Level 8.
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.
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.
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.
This was helpful. Thanks