Get startedGet started for free

Evaluate the model

Now that you've fit your model and inspected it's weights to make sure it makes sense, evaluate it on the tournament test set to see how well it performs on new data.

This exercise is part of the course

Advanced Deep Learning with Keras

View Course

Exercise instructions

  • Evaluate the model on games_tourney_test.
  • Use the same inputs and outputs as the training set.

Hands-on interactive exercise

Have a go at this exercise by completing this sample code.

# Evaluate the model on the tournament test data
print(____.____(____, ____, verbose=False))
Edit and Run Code