Skaters and goalies databases seem to be duplicating entries that then need to be dropped during the training.
Determine why/how the duplication is happening, then remove the logic that drops the duplicates.
|
skaters_db = skaters_db.groupby([Keys.game_id, Keys.player_id]).first().reset_index() |