IniziaInizia gratis

Building a training loop

Let's write a simple training loop from scratch!

The pipeline you've created in the previous exercise is available as the nlp object. It already contains the entity recognizer with the added label 'GADGET'.

The small set of labelled examples that you've created previously is available as the global variable TRAINING_DATA. To see the examples, you can print them in your script or in the IPython shell. spacy and random have already been imported for you.

Questo esercizio fa parte del corso

Advanced NLP with spaCy

Visualizza il corso

Esercizio pratico interattivo

Prova a risolvere questo esercizio completando il codice di esempio.

# Start the training
____.____

# Loop for 10 iterations
for itn in range(____):
    # Shuffle the training data
    random.shuffle(TRAINING_DATA)
Modifica ed esegui il codice