Victor Dieguez commited on
Commit ·
974e6f0
1
Parent(s): 7cc1556
Removing envs variables
Browse files- src/populate.py +2 -2
src/populate.py
CHANGED
|
@@ -50,8 +50,8 @@ def get_leaderboard_df(eval_results_path, eval_requests_path, cols, benchmark_co
|
|
| 50 |
continue
|
| 51 |
|
| 52 |
# Start with all columns set to None so the DF matches AutoEvalColumn
|
| 53 |
-
row = {field.name: None for field in fields(AutoEvalColumn)}
|
| 54 |
-
|
| 55 |
# ---- model column ----
|
| 56 |
config = data.get("config", {})
|
| 57 |
model_id = (
|
|
|
|
| 50 |
continue
|
| 51 |
|
| 52 |
# Start with all columns set to None so the DF matches AutoEvalColumn
|
| 53 |
+
#row = {field.name: None for field in fields(AutoEvalColumn)}
|
| 54 |
+
row = {c: None for c in cols}
|
| 55 |
# ---- model column ----
|
| 56 |
config = data.get("config", {})
|
| 57 |
model_id = (
|