Spaces:
Sleeping
Sleeping
meg-huggingface
commited on
Commit
•
9ae98e7
1
Parent(s):
a200055
Debugging statements
Browse files- src/populate.py +2 -0
src/populate.py
CHANGED
@@ -19,6 +19,8 @@ def get_leaderboard_df(results_path: str, requests_path: str, cols: list, benchm
|
|
19 |
df = pd.DataFrame.from_records(all_data_json)
|
20 |
#df = df.sort_values(by=[AutoEvalColumn.average.name], ascending=False)
|
21 |
df = df[cols].round(decimals=2)
|
|
|
|
|
22 |
|
23 |
# filter out if any of the benchmarks have not been produced
|
24 |
# df = df[has_no_nan_values(df, benchmark_cols)]
|
|
|
19 |
df = pd.DataFrame.from_records(all_data_json)
|
20 |
#df = df.sort_values(by=[AutoEvalColumn.average.name], ascending=False)
|
21 |
df = df[cols].round(decimals=2)
|
22 |
+
print("df is now")
|
23 |
+
print(df)
|
24 |
|
25 |
# filter out if any of the benchmarks have not been produced
|
26 |
# df = df[has_no_nan_values(df, benchmark_cols)]
|