CommencerCommencer gratuitement

Predicting named entities in context

Models are statistical and not always right. Whether their predictions are correct depends on the training data and the text you're processing. Let's take a look at an example. The small English model is available as the variable nlp.

Cet exercice fait partie du cours

Advanced NLP with spaCy

Afficher le cours

Exercice interactif pratique

Essayez cet exercice en complétant cet exemple de code.

text = "New iPhone X release date leaked as Apple reveals pre-orders by mistake"

# Process the text
doc = ____

# Iterate over the entities
for ____ in ____.____:
    # print the entity text and label
    print(____.____, ____.____)
Modifier et exécuter le code