xeon27
commited on
Commit
·
d7d56ae
1
Parent(s):
b724ea6
Debug
Browse files- src/populate.py +4 -0
src/populate.py
CHANGED
@@ -20,6 +20,10 @@ def get_leaderboard_df(results_path: str, requests_path: str, cols: list, benchm
|
|
20 |
|
21 |
# filter out if any of the benchmarks have not been produced
|
22 |
df = df[has_no_nan_values(df, benchmark_cols)]
|
|
|
|
|
|
|
|
|
23 |
return df
|
24 |
|
25 |
|
|
|
20 |
|
21 |
# filter out if any of the benchmarks have not been produced
|
22 |
df = df[has_no_nan_values(df, benchmark_cols)]
|
23 |
+
|
24 |
+
# TMP: Debugging
|
25 |
+
print(df.head())
|
26 |
+
|
27 |
return df
|
28 |
|
29 |
|