Learning spaCy | Day 1

Emad Dehnavi
3 min readMar 26, 2024

Once we load a pipeline package using spacy.load() method, which return a nlp object, we can do lot’s of cool context-specific things, for example if we go with en_core_web_sm pipeline package, we can tell whether a word is a verb or whether a span of text is a person name.

if you are using Poetry and faced problems when downloading the pipeline packages, see this post.

Learn spaCy | Day 1

What is a span, you

--

--