Skip to content

Commit

Permalink
Updated README: Now uses Python 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
kyleskom committed Oct 25, 2023
1 parent 4a675a1 commit 09575f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
A machine learning AI used to predict the winners and under/overs of NBA games. Takes all team data from the 2007-08 season to current season, matched with odds of those games, using a neural network to predict winning bets for today's games. Achieves ~69% accuracy on money lines and ~55% on under/overs. Outputs expected value for teams money lines to provide better insight. The fraction of your bankroll to bet based on the Kelly Criterion is also outputted. Note that a popular, less risky approach is to bet 50% of the stake recommended by the Kelly Criterion.
## Packages Used

Use Python 3.8. In particular the packages/libraries used are...
Use Python 3.11. In particular the packages/libraries used are...

* Tensorflow - Machine learning library
* XGBoost - Gradient boosting framework
Expand Down

1 comment on commit 09575f4

@luisro70
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hola estoy tratando de utilizar tu modelo en pc utilizando
$ git clone https://github.com/kyleskom/NBA-Machine-Learning-Sports-Betting.git
$ cd NBA-Machine-Learning-Sports-Betting
$ pip3 install -r requirements.txt
$ python3 main.py -xgb -odds=fanduel

pero da un error File "/mnt/c/Users/luisr/OneDrive/Escritorio/luis/BOT DEPORTES/NBA-Machine-Learning-Sports-Betting/NBA-Machine-Learning-Sports-Betting/main.py", line 4, in
import pandas as pd
ModuleNotFoundError: No module named 'pandas'

como se hace actualmente

Please sign in to comment.