Spaces:
Runtime error
Runtime error
pminervini
commited on
Commit
•
3e9bbdf
1
Parent(s):
83c7673
update
Browse files- app.py +1 -2
- src/display/utils.py +1 -1
app.py
CHANGED
@@ -197,8 +197,7 @@ with demo:
|
|
197 |
elem_id="leaderboard-table",
|
198 |
interactive=False,
|
199 |
visible=True,
|
200 |
-
column_widths=["2%", "
|
201 |
-
min_width=800
|
202 |
)
|
203 |
|
204 |
# Dummy leaderboard for handling the case when the user uses backspace key
|
|
|
197 |
elem_id="leaderboard-table",
|
198 |
interactive=False,
|
199 |
visible=True,
|
200 |
+
column_widths=["2%", "20%"]
|
|
|
201 |
)
|
202 |
|
203 |
# Dummy leaderboard for handling the case when the user uses backspace key
|
src/display/utils.py
CHANGED
@@ -61,7 +61,7 @@ auto_eval_column_dict = []
|
|
61 |
auto_eval_column_dict.append(["model_type_symbol", ColumnContent, ColumnContent("T", "str", True, never_hidden=True)])
|
62 |
auto_eval_column_dict.append(["model", ColumnContent, ColumnContent("Model", "markdown", True, never_hidden=True)])
|
63 |
#Scores
|
64 |
-
auto_eval_column_dict.append(["average", ColumnContent, ColumnContent("
|
65 |
for task in Tasks:
|
66 |
auto_eval_column_dict.append([task.name, ColumnContent, ColumnContent(task.value.col_name, "number", True)])
|
67 |
# Model information
|
|
|
61 |
auto_eval_column_dict.append(["model_type_symbol", ColumnContent, ColumnContent("T", "str", True, never_hidden=True)])
|
62 |
auto_eval_column_dict.append(["model", ColumnContent, ColumnContent("Model", "markdown", True, never_hidden=True)])
|
63 |
#Scores
|
64 |
+
auto_eval_column_dict.append(["average", ColumnContent, ColumnContent("Avg", "number", True)])
|
65 |
for task in Tasks:
|
66 |
auto_eval_column_dict.append([task.name, ColumnContent, ColumnContent(task.value.col_name, "number", True)])
|
67 |
# Model information
|