James McCool
commited on
Commit
·
8976120
1
Parent(s):
ddb9785
Update player name lists in app.py to include additional entries for MLB, enhancing accuracy in player identification and lineup generation.
Browse files
app.py
CHANGED
@@ -25,8 +25,8 @@ from global_func.reduce_volatility_preset import reduce_volatility_preset
|
|
25 |
|
26 |
freq_format = {'Finish_percentile': '{:.2%}', 'Lineup Edge': '{:.2%}', 'Win%': '{:.2%}'}
|
27 |
stacking_sports = ['MLB', 'NHL', 'NFL']
|
28 |
-
player_wrong_names_mlb = ['Enrique Hernandez', 'Joseph Cantillo']
|
29 |
-
player_right_names_mlb = ['Kike Hernandez', 'Joey Cantillo']
|
30 |
|
31 |
with st.container():
|
32 |
|
|
|
25 |
|
26 |
freq_format = {'Finish_percentile': '{:.2%}', 'Lineup Edge': '{:.2%}', 'Win%': '{:.2%}'}
|
27 |
stacking_sports = ['MLB', 'NHL', 'NFL']
|
28 |
+
player_wrong_names_mlb = ['Enrique Hernandez', 'Joseph Cantillo', 'Mike Soroka']
|
29 |
+
player_right_names_mlb = ['Kike Hernandez', 'Joey Cantillo', 'Michael Soroka']
|
30 |
|
31 |
with st.container():
|
32 |
|