├── .gitignore ├── Output ├── Images │ ├── staying_open_curve.png │ └── top2_accuracy_curve.png └── output.txt ├── README.md ├── bot_table_draft.py ├── create_model.py ├── create_test_models.py ├── models.py ├── predict_from_log.py ├── preprocessing.py ├── requirements.txt └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanSaxe/MagicDraftBot/HEAD/.gitignore -------------------------------------------------------------------------------- /Output/Images/staying_open_curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanSaxe/MagicDraftBot/HEAD/Output/Images/staying_open_curve.png -------------------------------------------------------------------------------- /Output/Images/top2_accuracy_curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanSaxe/MagicDraftBot/HEAD/Output/Images/top2_accuracy_curve.png -------------------------------------------------------------------------------- /Output/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanSaxe/MagicDraftBot/HEAD/Output/output.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanSaxe/MagicDraftBot/HEAD/README.md -------------------------------------------------------------------------------- /bot_table_draft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanSaxe/MagicDraftBot/HEAD/bot_table_draft.py -------------------------------------------------------------------------------- /create_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanSaxe/MagicDraftBot/HEAD/create_model.py -------------------------------------------------------------------------------- /create_test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanSaxe/MagicDraftBot/HEAD/create_test_models.py -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanSaxe/MagicDraftBot/HEAD/models.py -------------------------------------------------------------------------------- /predict_from_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanSaxe/MagicDraftBot/HEAD/predict_from_log.py -------------------------------------------------------------------------------- /preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanSaxe/MagicDraftBot/HEAD/preprocessing.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanSaxe/MagicDraftBot/HEAD/requirements.txt -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanSaxe/MagicDraftBot/HEAD/utils.py --------------------------------------------------------------------------------