Commit
·
489ee3a
1
Parent(s):
535d0d5
Remove data fakers
Browse files- src/submission/submit.py +3 -2
src/submission/submit.py
CHANGED
@@ -38,8 +38,9 @@ def add_new_eval(
|
|
38 |
if input_col not in BENCHMARK_COLS:
|
39 |
print(input_col)
|
40 |
return styled_error(f'Missing: {input_col}')
|
41 |
-
|
42 |
-
|
|
|
43 |
|
44 |
|
45 |
user_name = "davidadamczyk"
|
|
|
38 |
if input_col not in BENCHMARK_COLS:
|
39 |
print(input_col)
|
40 |
return styled_error(f'Missing: {input_col}')
|
41 |
+
ret.update({i:j['acc,none'] for i,j in results.items()})
|
42 |
+
# fake data for testing...
|
43 |
+
#ret.update({i:round(np.random.normal(1, 0.5, 1)[0], 2) for i,j in results.items()})
|
44 |
|
45 |
|
46 |
user_name = "davidadamczyk"
|