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.
This exercise is part of the course
Advanced NLP with spaCy
Hands-on interactive exercise
Have a go at this exercise by completing this sample 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])