Spaces:
Running
Running
James McCool
commited on
Commit
·
8f23e6e
1
Parent(s):
9c817f8
Update sharp_split values in app.py for strength categories to improve accuracy in contest simulations. Adjusted thresholds for 'Not Very', 'Below Average', 'Average', 'Above Average', and 'Very' to enhance data handling and ensure more precise calculations.
Browse files
app.py
CHANGED
@@ -342,13 +342,13 @@ with tab1:
|
|
342 |
if strength_var1 == 'Not Very':
|
343 |
sharp_split = 500000
|
344 |
elif strength_var1 == 'Below Average':
|
345 |
-
sharp_split =
|
346 |
elif strength_var1 == 'Average':
|
347 |
-
sharp_split =
|
348 |
elif strength_var1 == 'Above Average':
|
349 |
-
sharp_split =
|
350 |
elif strength_var1 == 'Very':
|
351 |
-
sharp_split =
|
352 |
|
353 |
|
354 |
with col2:
|
|
|
342 |
if strength_var1 == 'Not Very':
|
343 |
sharp_split = 500000
|
344 |
elif strength_var1 == 'Below Average':
|
345 |
+
sharp_split = 250000
|
346 |
elif strength_var1 == 'Average':
|
347 |
+
sharp_split = 100000
|
348 |
elif strength_var1 == 'Above Average':
|
349 |
+
sharp_split = 50000
|
350 |
elif strength_var1 == 'Very':
|
351 |
+
sharp_split = 10000
|
352 |
|
353 |
|
354 |
with col2:
|