0Pricing
NLP Academy · Lesson

Customizing the Pipeline

Add, disable, and reorder components.

A Stack of Steps

A spaCy pipeline is just an ordered list of components. Text flows through each one, gaining tags, parses, and entities along the way.

See What Is Loaded

Check the active steps with nlp.pipe_names. It lists every component in order, so you always know what is running.

print(nlp.pipe_names)

All lessons in this course

  1. Why spaCy for Real Projects
  2. Loading a Model and Processing a Doc
  3. Tokens, Spans, and Doc Objects
  4. Customizing the Pipeline
← Back to NLP Academy