Spaces:
Runtime error
Runtime error
edits
Browse files- src/display/utils.py +2 -2
src/display/utils.py
CHANGED
|
@@ -19,8 +19,8 @@ class ColumnContent:
|
|
| 19 |
# manually create class instead of using make_dataclass as our columns are not built dynamically,
|
| 20 |
# the given and known cols are the run id and technique, based on our results json file
|
| 21 |
class AutoEvalColumn:
|
| 22 |
-
run_id = ColumnContent("run_id", "str", True, never_hidden= True)
|
| 23 |
-
technique = ColumnContent("technique", "str", True, never_hidden= True)
|
| 24 |
|
| 25 |
# Column selection
|
| 26 |
COLS = [c.name for c in fields(AutoEvalColumn) if not c.hidden]
|
|
|
|
| 19 |
# manually create class instead of using make_dataclass as our columns are not built dynamically,
|
| 20 |
# the given and known cols are the run id and technique, based on our results json file
|
| 21 |
class AutoEvalColumn:
|
| 22 |
+
run_id = ColumnContent("run_id", "str", True, never_hidden = True)
|
| 23 |
+
technique = ColumnContent("technique", "str", True, never_hidden = True)
|
| 24 |
|
| 25 |
# Column selection
|
| 26 |
COLS = [c.name for c in fields(AutoEvalColumn) if not c.hidden]
|