cshaley / bracketeer

Generate predicted bracket from a kaggle march madness submission
MIT License
33 stars 13 forks source link

Restructure to run using a binary tree #2

Closed cshaley closed 6 years ago

cshaley commented 6 years ago

As of now, the logic for determining bracket shape and winners of brackets is convoluted, complicated, and confusing. Replacing those processes by using a binary tree instead of tables should greatly simplify them, as the bracket is a binary tree by definition.

All logic should be based off of the kaggle dataset except for matchup_locs, which is referring to pixel coordinates on the bracket image.

cshaley commented 6 years ago

Done!