Spaces:
Running
Running
Bertrand Cabot commited on
Update src/populate.py
Browse files- src/populate.py +1 -4
src/populate.py
CHANGED
|
@@ -14,11 +14,8 @@ def get_leaderboard_df(results_path: str, requests_path: str, cols: list, benchm
|
|
| 14 |
all_data_json = [v.to_dict() for v in raw_data]
|
| 15 |
|
| 16 |
df = pd.DataFrame.from_records(all_data_json)
|
| 17 |
-
print(cols)
|
| 18 |
-
print(benchmark_cols)
|
| 19 |
-
print(raw_data)
|
| 20 |
df = df.sort_values(by=[AutoEvalColumn.average.name], ascending=False).reset_index(drop=True)
|
| 21 |
-
|
| 22 |
df = df[cols].round(decimals=2)
|
| 23 |
|
| 24 |
# filter out if any of the benchmarks have not been produced
|
|
|
|
| 14 |
all_data_json = [v.to_dict() for v in raw_data]
|
| 15 |
|
| 16 |
df = pd.DataFrame.from_records(all_data_json)
|
|
|
|
|
|
|
|
|
|
| 17 |
df = df.sort_values(by=[AutoEvalColumn.average.name], ascending=False).reset_index(drop=True)
|
| 18 |
+
|
| 19 |
df = df[cols].round(decimals=2)
|
| 20 |
|
| 21 |
# filter out if any of the benchmarks have not been produced
|