xeon27
commited on
Commit
·
e7a2635
1
Parent(s):
f066ed8
Fix bug
Browse files- src/populate.py +1 -0
src/populate.py
CHANGED
|
@@ -45,6 +45,7 @@ def get_leaderboard_df(results_path: str, requests_path: str, cols: list, benchm
|
|
| 45 |
# # filter out if any of the benchmarks have not been produced
|
| 46 |
# df = df[has_no_nan_values(df, benchmark_cols)]
|
| 47 |
df = df.fillna("-")
|
|
|
|
| 48 |
|
| 49 |
# make values clickable and link to log files
|
| 50 |
for col in benchmark_cols:
|
|
|
|
| 45 |
# # filter out if any of the benchmarks have not been produced
|
| 46 |
# df = df[has_no_nan_values(df, benchmark_cols)]
|
| 47 |
df = df.fillna("-")
|
| 48 |
+
print(df["GAIA"].head())
|
| 49 |
|
| 50 |
# make values clickable and link to log files
|
| 51 |
for col in benchmark_cols:
|