Session Ready
Exercise

Evaluate the model on the tournament test data

The model you fit to the regular season data (model) in the previous exercise and the tournament dataset (games_tourney) are available in your workspace.

In this exercise, you will evaluate the model on this new dataset. This evaluation will tell you how well you can predict the tournament games, based on a model trained with the regular season data. This is interesting because many teams play each other in the tournament that did not play in the regular season, so this is a very good check that your model is not overfitting.

Instructions
100 XP
  • Assign the 'team_1' and 'team_2' columns from games_tourney to input_1 and input_2, respectively.
  • Evaluate the model.