Selective processing
In this exercise, you'll use the nlp.make_doc
and nlp.disable_pipes
methods to only run selected components when processing a text. The small English model is already loaded in as the nlp
object.
Cet exercice fait partie du cours
Advanced NLP with spaCy
Exercice interactif pratique
Essayez cet exercice en complétant cet exemple de code.
text = "Chick-fil-A is an American fast food restaurant chain headquartered in the city of College Park, Georgia, specializing in chicken sandwiches."
# Only tokenize the text
doc = nlp(text)
print([token.text for token in doc])