Questions tagged [spacy]

Using the power of Python and Cython to enhance Natural Language Processing (NLP) capabilities with industrial strength.

Advanced cases can be identified by using spacy to identify the subject in sentences

Looking to identify the subject in a sentence, I attempted to utilize some code resources from this link: import spacy nlp = nlp = spacy.load("en_core_web_sm") sent = "the python can be used to find objects." #sent = "The bears in ...

The curse word filter was unable to load the Spacy model for English

For my Python profanity-filter, I require the Spacy model 'en' to be installed. I want a requirements.txt file that includes all necessary dependencies. Below is what I currently have: spacy>=2.2.0<3.0.0 https://github.com/explosion/spacy-models/rele ...

Spacy model packaging

I am working on incorporating the spacy model de_core_news_sm into a Python package. Check out my project here: https://github.com/michaelhochleitner/package_de_core_news_sm. To package and install the project, I use the following commands: python setup ...