spacy

Package — NLPPython 3.7+Intermediate

Industrial NLP: tokenization, NER, POS tagging, dependency parsing

Quick Info

Documentation
Official Docs
Python Version
3.7+
Dependencies
thinc, cymem, preshed, murmurhash, wasabi, srsly, catalogue, typer, tqdm, pydantic, numpy
Install
pip install spacy && python -m spacy download en_core_web_sm

Learn by Difficulty

Quick Example

python
# Install: pip install spacy && python -m spacy download en_core_web_sm
import spacy

# Basic spacy usage
print(f"Using spacy")
# See documentation for detailed examples

spacy is a third-party package. Industrial NLP: tokenization, NER, POS tagging, dependency parsing. Install with: pip install spacy && python -m spacy download en_core_web_sm

Try in Playground

Tags

packagenlptokenizationnerparsing

Related Items