Spaces:
Running
Running
James McCool
commited on
Commit
·
796d14d
1
Parent(s):
a95448c
Update sharp_split thresholds in app.py for strength categories to improve simulation accuracy. Adjusted values for 'Below Average', 'Average', 'Above Average', and 'Very' to enhance performance metrics in the application.
Browse files
app.py
CHANGED
@@ -268,13 +268,13 @@ with tab1:
|
|
268 |
if strength_var1 == 'Not Very':
|
269 |
sharp_split = 500000
|
270 |
elif strength_var1 == 'Below Average':
|
271 |
-
sharp_split =
|
272 |
elif strength_var1 == 'Average':
|
273 |
-
sharp_split =
|
274 |
elif strength_var1 == 'Above Average':
|
275 |
-
sharp_split =
|
276 |
elif strength_var1 == 'Very':
|
277 |
-
sharp_split =
|
278 |
|
279 |
|
280 |
with col2:
|
|
|
268 |
if strength_var1 == 'Not Very':
|
269 |
sharp_split = 500000
|
270 |
elif strength_var1 == 'Below Average':
|
271 |
+
sharp_split = 250000
|
272 |
elif strength_var1 == 'Average':
|
273 |
+
sharp_split = 100000
|
274 |
elif strength_var1 == 'Above Average':
|
275 |
+
sharp_split = 50000
|
276 |
elif strength_var1 == 'Very':
|
277 |
+
sharp_split = 10000
|
278 |
|
279 |
|
280 |
with col2:
|