xeon27
commited on
Commit
·
bad4049
1
Parent(s):
d201228
Minor change
Browse files
app.py
CHANGED
@@ -63,7 +63,7 @@ def init_leaderboard(dataframe, benchmark_type):
|
|
63 |
non_task_cols = ["Model"]
|
64 |
if benchmark_type == "agentic":
|
65 |
# Add column for type of agent, as of now all models use the basic inspect agent
|
66 |
-
dataframe["Agent"] = ["[Basic Agent](https://inspect.ai-safety-institute.org.uk/agents.html#sec-basic-agent)"]*
|
67 |
non_task_cols.append("Agent")
|
68 |
AutoEvalColumnSubset = [c for c in fields(AutoEvalColumn) if ((c.name in non_task_cols) or (TASK_NAME_INVERSE_MAP.get(c.name, dict()).get("type", "")==benchmark_type))]
|
69 |
|
|
|
63 |
non_task_cols = ["Model"]
|
64 |
if benchmark_type == "agentic":
|
65 |
# Add column for type of agent, as of now all models use the basic inspect agent
|
66 |
+
dataframe["Agent"] = ["[Basic Agent](https://inspect.ai-safety-institute.org.uk/agents.html#sec-basic-agent)"]*(dataframe.shape[0])
|
67 |
non_task_cols.append("Agent")
|
68 |
AutoEvalColumnSubset = [c for c in fields(AutoEvalColumn) if ((c.name in non_task_cols) or (TASK_NAME_INVERSE_MAP.get(c.name, dict()).get("type", "")==benchmark_type))]
|
69 |
|