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.
This exercise is part of the course
Advanced Deep Learning with Keras
Exercise instructions
- 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'
.
Hands-on interactive exercise
Have a go at this exercise by completing this sample code.
# Evaluate the model on the games_tourney_test dataset
print(____(games_tourney_test____,
games_tourney_test____, verbose=False))