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 PlaygroundTags
packagenlptokenizationnerparsing
Related Items
nltk
Package — NLP
Natural Language Toolkit: text processing, corpora, classification
transformers
Package — Deep Learning
Hugging Face: state-of-the-art NLP/vision/audio models (BERT, GPT, etc.)
gensim
Package — NLP
Topic modeling: Word2Vec, Doc2Vec, LDA, TF-IDF
flair
Package — NLP
State-of-the-art NLP: NER, POS, classification with contextual embeddings
stanza
Package — NLP
Stanford NLP library: 70+ language support, NER, parsing, sentiment
textblob
Package — NLP
Simple NLP: sentiment analysis, translation, noun phrases