Top "Spacy" questions

Industrial strength Natural Language Processing (NLP) with Python and Cython

SpaCy OSError: Can't find model 'en'

even though I downloaded the model it cannot load it [jalal@goku entity-sentiment-analysis]$ which python /scratch/sjn/anaconda/bin/python […

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

what is difference between spacy.load('en_core_web_sm') and spacy.load('en')? This link explains different model sizes. …

python-3.x spacy
ImportError: No module named 'spacy.en'

I'm working on a codebase that uses Spacy. I installed spacy using: sudo pip3 install spacy and then sudo python3 …

python spacy
Add/remove custom stop words with spacy

What is the best way to add/remove stop words with spacy? I am using token.is_stop function and …

python nlp stop-words spacy
how to use spacy lemmatizer to get a word into basic form

I am new to spacy and I want to use its lemmatizer function, but I don't know how to use …

python nltk spacy lemmatization
Failed building wheel for spacy

I'm trying to install spacy by running pip install spacy for python version 3.6.1 but continuously i'm getting errors like below,…

python scipy pip python-wheel spacy
How to get the dependency tree with spaCy?

I have been trying to find how to get the dependency tree with spaCy but I can't find anything on …

python spacy
What do spaCy's part-of-speech and dependency tags mean?

spaCy tags up each of the Tokens in a Document with a part of speech (in two different formats, one …

python nlp spacy
Import error with spacy: "No module named en"

I'm having trouble using the Python spaCy library. It seems to be installed correctly but at from spacy.en import …

python spacy
Noun phrases with spacy

How can I extract noun phrases from text using spacy? I am not referring to part of speech tags. In …

python spacy