Spaces:
Running
Running
Commit
·
c1a1d81
1
Parent(s):
0d3f186
Update Source/Predict/predict.py
Browse files
Source/Predict/predict.py
CHANGED
@@ -157,7 +157,7 @@ def predict(home,away,season,week,total):
|
|
157 |
xgb_ml.load_model(file_path)
|
158 |
try:
|
159 |
ml_predicted_proba = xgb_ml.predict(matrix)[0][1]
|
160 |
-
winner_proba = max([ml_predicted_proba, 1-ml_predicted_proba])
|
161 |
moneyline = {'Winner': [home if ml_predicted_proba>0.6 else away if ml_predicted_proba<0.4 else 'Toss-Up'],
|
162 |
'Probabilities':[winner_proba]}
|
163 |
except:
|
@@ -170,7 +170,7 @@ def predict(home,away,season,week,total):
|
|
170 |
xgb_ou = xgb.Booster()
|
171 |
xgb_ou.load_model(file_path)
|
172 |
try:
|
173 |
-
ou_predicted_proba = xgb_ou.predict(matrix)[0][1]
|
174 |
over_under = {'Over/Under': ['Over' if ou_predicted_proba>0.5 else 'Under'],
|
175 |
'Probability': [ou_predicted_proba]}
|
176 |
except:
|
|
|
157 |
xgb_ml.load_model(file_path)
|
158 |
try:
|
159 |
ml_predicted_proba = xgb_ml.predict(matrix)[0][1]
|
160 |
+
winner_proba = max([ml_predicted_proba, 1-ml_predicted_proba]).item()
|
161 |
moneyline = {'Winner': [home if ml_predicted_proba>0.6 else away if ml_predicted_proba<0.4 else 'Toss-Up'],
|
162 |
'Probabilities':[winner_proba]}
|
163 |
except:
|
|
|
170 |
xgb_ou = xgb.Booster()
|
171 |
xgb_ou.load_model(file_path)
|
172 |
try:
|
173 |
+
ou_predicted_proba = xgb_ou.predict(matrix)[0][1].item()
|
174 |
over_under = {'Over/Under': ['Over' if ou_predicted_proba>0.5 else 'Under'],
|
175 |
'Probability': [ou_predicted_proba]}
|
176 |
except:
|