Spaces:
Sleeping
Sleeping
rounding
Browse files
src/leaderboard/processor.py
CHANGED
|
@@ -285,7 +285,9 @@ def leaderboard_to_dataframe(leaderboard_data: Dict) -> pd.DataFrame:
|
|
| 285 |
for col in old_avg_cols:
|
| 286 |
if col in df.columns:
|
| 287 |
df = df.drop(columns=[col])
|
| 288 |
-
|
|
|
|
|
|
|
| 289 |
return df
|
| 290 |
|
| 291 |
|
|
|
|
| 285 |
for col in old_avg_cols:
|
| 286 |
if col in df.columns:
|
| 287 |
df = df.drop(columns=[col])
|
| 288 |
+
print("--- DataFrame before returning from leaderboard_to_dataframe ---")
|
| 289 |
+
print(df[['model_name', 'macro_accuracy', 'macro_recall', 'total_evals_count']].head())
|
| 290 |
+
print("-------------------------------------------------------------")
|
| 291 |
return df
|
| 292 |
|
| 293 |
|