ComeçarComece de graça

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.

Este exercício faz parte do curso

Advanced NLP with spaCy

Ver curso

Exercício interativo prático

Experimente este exercício completando este código de exemplo.

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])
Editar e executar o código