pufanyi commited on
Commit
595fce3
·
1 Parent(s): 70a66a1

Refactor GET_DEFAULT_CHECKBOX function to remove "Model Name" column

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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,