xeon27
commited on
Commit
·
e7fe9f8
1
Parent(s):
eb538cb
Fix bug
Browse files- src/populate.py +2 -2
src/populate.py
CHANGED
|
@@ -42,11 +42,11 @@ def get_leaderboard_df(results_path: str, requests_path: str, cols: list, benchm
|
|
| 42 |
df = df[cols].round(decimals=2)
|
| 43 |
|
| 44 |
# TMP: Debug
|
| 45 |
-
print(df.shape
|
| 46 |
# filter out if any of the benchmarks have not been produced
|
| 47 |
df = df[has_no_nan_values(df, benchmark_cols)]
|
| 48 |
# TMP: Debug
|
| 49 |
-
print(df.shape
|
| 50 |
|
| 51 |
# make values clickable and link to log files
|
| 52 |
for col in benchmark_cols:
|
|
|
|
| 42 |
df = df[cols].round(decimals=2)
|
| 43 |
|
| 44 |
# TMP: Debug
|
| 45 |
+
print(df.shape)
|
| 46 |
# filter out if any of the benchmarks have not been produced
|
| 47 |
df = df[has_no_nan_values(df, benchmark_cols)]
|
| 48 |
# TMP: Debug
|
| 49 |
+
print(df.shape)
|
| 50 |
|
| 51 |
# make values clickable and link to log files
|
| 52 |
for col in benchmark_cols:
|