Spaces:
Runtime error
Runtime error
Refactor auto_eval_column_dict to use "str" instead of "markdown" for the "Model Name" column
Browse files- src/display/utils.py +1 -1
src/display/utils.py
CHANGED
@@ -27,7 +27,7 @@ auto_eval_column_dict = []
|
|
27 |
# Init
|
28 |
# auto_eval_column_dict.append(["model_type_symbol", ColumnContent, ColumnContent("T", "str", True, never_hidden=True)])
|
29 |
auto_eval_column_dict.append(
|
30 |
-
["model", ColumnContent, ColumnContent("Model Name", "
|
31 |
)
|
32 |
# Scores
|
33 |
auto_eval_column_dict.append(["Overall", ColumnContent, ColumnContent("Total", "number", True)])
|
|
|
27 |
# Init
|
28 |
# auto_eval_column_dict.append(["model_type_symbol", ColumnContent, ColumnContent("T", "str", True, never_hidden=True)])
|
29 |
auto_eval_column_dict.append(
|
30 |
+
["model", ColumnContent, ColumnContent("Model Name", "str", True, never_hidden=True)]
|
31 |
)
|
32 |
# Scores
|
33 |
auto_eval_column_dict.append(["Overall", ColumnContent, ColumnContent("Total", "number", True)])
|