unknown commited on
Commit
3a59779
β€’
1 Parent(s): 67f3926

delete columns

Browse files
Files changed (1) hide show
  1. app.py +51 -51
app.py CHANGED
@@ -139,57 +139,57 @@ with demo:
139
 
140
  with gr.Tabs(elem_classes="tab-buttons") as tabs:
141
  with gr.TabItem("πŸ“ 진행쀑 과제", elem_id="llm-benchmark-tab-table", id=0):
142
- with gr.Row():
143
- with gr.Column():
144
- with gr.Row():
145
- search_bar = gr.Textbox(
146
- placeholder=" πŸ” Search for your model (separate multiple queries with `;`) and press ENTER...",
147
- show_label=False,
148
- elem_id="search-bar",
149
- )
150
- with gr.Row():
151
- shown_columns = gr.CheckboxGroup(
152
- choices=[
153
- c.name
154
- for c in fields(AutoEvalColumn)
155
- if not c.hidden and not c.never_hidden
156
- ],
157
- value=[
158
- c.name
159
- for c in fields(AutoEvalColumn)
160
- if c.displayed_by_default and not c.hidden and not c.never_hidden
161
- ],
162
- label="Select columns to show",
163
- elem_id="column-select",
164
- interactive=True,
165
- )
166
- with gr.Row():
167
- deleted_models_visibility = gr.Checkbox(
168
- value=False, label="Show gated/private/deleted models", interactive=True
169
- )
170
- with gr.Column(min_width=320):
171
- #with gr.Box(elem_id="box-filter"):
172
- filter_columns_type = gr.CheckboxGroup(
173
- label="Model types",
174
- choices=[t.to_str() for t in ModelType],
175
- value=[t.to_str() for t in ModelType],
176
- interactive=True,
177
- elem_id="filter-columns-type",
178
- )
179
- filter_columns_precision = gr.CheckboxGroup(
180
- label="Precision",
181
- choices=[i.value.name for i in Precision],
182
- value=[i.value.name for i in Precision],
183
- interactive=True,
184
- elem_id="filter-columns-precision",
185
- )
186
- filter_columns_size = gr.CheckboxGroup(
187
- label="Model sizes (in billions of parameters)",
188
- choices=list(NUMERIC_INTERVALS.keys()),
189
- value=list(NUMERIC_INTERVALS.keys()),
190
- interactive=True,
191
- elem_id="filter-columns-size",
192
- )
193
 
194
  leaderboard_table = gr.components.Dataframe(
195
  value=leaderboard_df[
 
139
 
140
  with gr.Tabs(elem_classes="tab-buttons") as tabs:
141
  with gr.TabItem("πŸ“ 진행쀑 과제", elem_id="llm-benchmark-tab-table", id=0):
142
+ # with gr.Row():
143
+ # with gr.Column():
144
+ # with gr.Row():
145
+ # search_bar = gr.Textbox(
146
+ # placeholder=" πŸ” Search for your model (separate multiple queries with `;`) and press ENTER...",
147
+ # show_label=False,
148
+ # elem_id="search-bar",
149
+ # )
150
+ # with gr.Row():
151
+ # shown_columns = gr.CheckboxGroup(
152
+ # choices=[
153
+ # c.name
154
+ # for c in fields(AutoEvalColumn)
155
+ # if not c.hidden and not c.never_hidden
156
+ # ],
157
+ # value=[
158
+ # c.name
159
+ # for c in fields(AutoEvalColumn)
160
+ # if c.displayed_by_default and not c.hidden and not c.never_hidden
161
+ # ],
162
+ # label="Select columns to show",
163
+ # elem_id="column-select",
164
+ # interactive=True,
165
+ # )
166
+ # with gr.Row():
167
+ # deleted_models_visibility = gr.Checkbox(
168
+ # value=False, label="Show gated/private/deleted models", interactive=True
169
+ # )
170
+ # with gr.Column(min_width=320):
171
+ # #with gr.Box(elem_id="box-filter"):
172
+ # filter_columns_type = gr.CheckboxGroup(
173
+ # label="Model types",
174
+ # choices=[t.to_str() for t in ModelType],
175
+ # value=[t.to_str() for t in ModelType],
176
+ # interactive=True,
177
+ # elem_id="filter-columns-type",
178
+ # )
179
+ # filter_columns_precision = gr.CheckboxGroup(
180
+ # label="Precision",
181
+ # choices=[i.value.name for i in Precision],
182
+ # value=[i.value.name for i in Precision],
183
+ # interactive=True,
184
+ # elem_id="filter-columns-precision",
185
+ # )
186
+ # filter_columns_size = gr.CheckboxGroup(
187
+ # label="Model sizes (in billions of parameters)",
188
+ # choices=list(NUMERIC_INTERVALS.keys()),
189
+ # value=list(NUMERIC_INTERVALS.keys()),
190
+ # interactive=True,
191
+ # elem_id="filter-columns-size",
192
+ # )
193
 
194
  leaderboard_table = gr.components.Dataframe(
195
  value=leaderboard_df[