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.
Diese Übung ist Teil des Kurses
Advanced NLP with spaCy
Interaktive Übung
Versuche dich an dieser Übung, indem du diesen Beispielcode vervollständigst.
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])