├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── NFLBettingModelTraining.py ├── NFLMoneyLine_model1.pkl ├── README.md ├── nfl_games.csv ├── nfl_teams.csv ├── requirements.txt └── spreadspoke_scores.csv /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TyWalters/NFL-Prediction-Model/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TyWalters/NFL-Prediction-Model/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /NFLBettingModelTraining.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TyWalters/NFL-Prediction-Model/HEAD/NFLBettingModelTraining.py -------------------------------------------------------------------------------- /NFLMoneyLine_model1.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TyWalters/NFL-Prediction-Model/HEAD/NFLMoneyLine_model1.pkl -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TyWalters/NFL-Prediction-Model/HEAD/README.md -------------------------------------------------------------------------------- /nfl_games.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TyWalters/NFL-Prediction-Model/HEAD/nfl_games.csv -------------------------------------------------------------------------------- /nfl_teams.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TyWalters/NFL-Prediction-Model/HEAD/nfl_teams.csv -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TyWalters/NFL-Prediction-Model/HEAD/requirements.txt -------------------------------------------------------------------------------- /spreadspoke_scores.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TyWalters/NFL-Prediction-Model/HEAD/spreadspoke_scores.csv --------------------------------------------------------------------------------