Inspecting the pipeline
Let's inspect the small English model's pipeline!
Cet exercice fait partie du cours
Advanced NLP with spaCy
Instructions
- Load the
en_core_web_sm
model and create thenlp
object. - Print the names of the pipeline components using
nlp.pipe_names
. - Print the full pipeline of
(name, component)
tuples usingnlp.pipeline
.
Exercice interactif pratique
Essayez cet exercice en complétant cet exemple de code.
# Load the en_core_web_sm model
nlp = ____
# Print the names of the pipeline components
print(____.____)
# Print the full pipeline of (name, component) tuples
print(____.____)