Inizia subitoInizia gratis

Evaluate the model

Now that you've fit your model to the tournament training data, evaluate it on the tournament test data. Recall that the tournament test data contains games from after 2010.

Questo esercizio fa parte del corso

Advanced Deep Learning with Keras

Visualizza corso

Istruzioni dell'esercizio

  • Evaluate the model on the games_tourney_test data.
  • Recall that the model's inputs are 'home', 'seed_diff', and 'prediction' columns and the target column is 'score_diff'.

esercizio interattivo pratico

Prova questo esercizio completando questo codice di esempio.

# Evaluate the model on the games_tourney_test dataset
print(____(games_tourney_test____,
               games_tourney_test____, verbose=False))
Modifica ed esegui il codice