Madhavan Iyengar
commited on
Commit
•
49e43c4
1
Parent(s):
942f95c
add model_type_symbol
Browse files- src/display/utils.py +1 -0
src/display/utils.py
CHANGED
@@ -22,6 +22,7 @@ class ColumnContent:
|
|
22 |
# metrics = ['precision', 'recall', 'f1_score', 'accuracy', 'yes_percent']
|
23 |
metrics = ['accuracy']
|
24 |
auto_eval_column_dict = [
|
|
|
25 |
["model_name", ColumnContent, ColumnContent("Model Name", "markdown", True, never_hidden=True)]
|
26 |
]
|
27 |
|
|
|
22 |
# metrics = ['precision', 'recall', 'f1_score', 'accuracy', 'yes_percent']
|
23 |
metrics = ['accuracy']
|
24 |
auto_eval_column_dict = [
|
25 |
+
["model_type_symbol", ColumnContent, ColumnContent("T", "str", True, never_hidden=True)],
|
26 |
["model_name", ColumnContent, ColumnContent("Model Name", "markdown", True, never_hidden=True)]
|
27 |
]
|
28 |
|