Spaces:
Runtime error
Runtime error
Refactor GET_DEFAULT_CHECKBOX function to remove "Model Name" column
Browse files
app.py
CHANGED
@@ -80,7 +80,7 @@ def GET_DEFAULT_TEXTBOX():
|
|
80 |
|
81 |
def GET_DEFAULT_CHECKBOX(subset):
|
82 |
choices = list(LEADERBOARD_DF[subset].columns)
|
83 |
-
choices.remove("Model Name")
|
84 |
# print("Choices:", [c.name for c in fields(AutoEvalColumn) if not c.hidden])
|
85 |
return gr.CheckboxGroup(
|
86 |
choices=choices,
|
|
|
80 |
|
81 |
def GET_DEFAULT_CHECKBOX(subset):
|
82 |
choices = list(LEADERBOARD_DF[subset].columns)
|
83 |
+
# choices.remove("Model Name")
|
84 |
# print("Choices:", [c.name for c in fields(AutoEvalColumn) if not c.hidden])
|
85 |
return gr.CheckboxGroup(
|
86 |
choices=choices,
|