Spaces:
Sleeping
Sleeping
meg-huggingface
commited on
Commit
·
1075b83
1
Parent(s):
3393abb
UI stuff
Browse files
app.py
CHANGED
@@ -194,21 +194,21 @@ with demo:
|
|
194 |
with gr.Column(min_width=320):
|
195 |
#with gr.Box(elem_id="box-filter"):
|
196 |
filter_columns_type = gr.CheckboxGroup(
|
197 |
-
label="Select model types to
|
198 |
choices=[t.to_str() for t in ModelType],
|
199 |
value=[t.to_str() for t in ModelType],
|
200 |
interactive=True,
|
201 |
elem_id="filter-columns-type",
|
202 |
)
|
203 |
filter_columns_precision = gr.CheckboxGroup(
|
204 |
-
label="Select precision levels to
|
205 |
choices=[i.value.name for i in Precision],
|
206 |
value=[i.value.name for i in Precision],
|
207 |
interactive=True,
|
208 |
elem_id="filter-columns-precision",
|
209 |
)
|
210 |
filter_columns_size = gr.CheckboxGroup(
|
211 |
-
label="Select model sizes (in billions of parameters) to
|
212 |
choices=list(NUMERIC_INTERVALS.keys()),
|
213 |
value=list(NUMERIC_INTERVALS.keys()),
|
214 |
interactive=True,
|
|
|
194 |
with gr.Column(min_width=320):
|
195 |
#with gr.Box(elem_id="box-filter"):
|
196 |
filter_columns_type = gr.CheckboxGroup(
|
197 |
+
label="Select model types to include",
|
198 |
choices=[t.to_str() for t in ModelType],
|
199 |
value=[t.to_str() for t in ModelType],
|
200 |
interactive=True,
|
201 |
elem_id="filter-columns-type",
|
202 |
)
|
203 |
filter_columns_precision = gr.CheckboxGroup(
|
204 |
+
label="Select precision levels to include",
|
205 |
choices=[i.value.name for i in Precision],
|
206 |
value=[i.value.name for i in Precision],
|
207 |
interactive=True,
|
208 |
elem_id="filter-columns-precision",
|
209 |
)
|
210 |
filter_columns_size = gr.CheckboxGroup(
|
211 |
+
label="Select model sizes (in billions of parameters) to include",
|
212 |
choices=list(NUMERIC_INTERVALS.keys()),
|
213 |
value=list(NUMERIC_INTERVALS.keys()),
|
214 |
interactive=True,
|