Adam Jirkovsky
commited on
Commit
·
cec7513
1
Parent(s):
23f4838
Fix ColumnContent init issues
Browse files- src/display/utils.py +6 -6
src/display/utils.py
CHANGED
@@ -75,12 +75,12 @@ AutoEvalColumn = make_dataclass("AutoEvalColumn", auto_eval_column_dict, frozen=
|
|
75 |
## For the queue columns in the submission tab
|
76 |
@dataclass(frozen=True)
|
77 |
class EvalQueueColumn: # Queue column
|
78 |
-
model = ColumnContent("model", "markdown", True)
|
79 |
-
revision = ColumnContent("revision", "str", True)
|
80 |
-
private = ColumnContent("private", "bool", True)
|
81 |
-
precision = ColumnContent("precision", "str", True)
|
82 |
-
weight_type = ColumnContent("weight_type", "str", "Original")
|
83 |
-
status = ColumnContent("status", "str", True)
|
84 |
|
85 |
|
86 |
## All the model information that we might need
|
|
|
75 |
## For the queue columns in the submission tab
|
76 |
@dataclass(frozen=True)
|
77 |
class EvalQueueColumn: # Queue column
|
78 |
+
model = ColumnContent("model", "Model" "markdown", True)
|
79 |
+
revision = ColumnContent("revision", "Revision", "str", True)
|
80 |
+
private = ColumnContent("private", "Private", "bool", True)
|
81 |
+
precision = ColumnContent("precision", "Precision", "str", True)
|
82 |
+
weight_type = ColumnContent("weight_type", "Weight Type", "str", "Original")
|
83 |
+
status = ColumnContent("status", "Status", "str", True)
|
84 |
|
85 |
|
86 |
## All the model information that we might need
|