Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -176,15 +176,14 @@ with demo:
|
|
176 |
value=False, label="Show gated/private/deleted models", interactive=True
|
177 |
)
|
178 |
with gr.Column(min_width=320):
|
179 |
-
with gr.
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
-
|
186 |
-
|
187 |
-
)
|
188 |
filter_columns_precision = gr.CheckboxGroup(
|
189 |
label="Precision",
|
190 |
choices=[i.value.name for i in Precision],
|
|
|
176 |
value=False, label="Show gated/private/deleted models", interactive=True
|
177 |
)
|
178 |
with gr.Column(min_width=320):
|
179 |
+
#with gr.Box(elem_id="box-filter"):
|
180 |
+
filter_columns_type = gr.CheckboxGroup(
|
181 |
+
label="Model types",
|
182 |
+
choices=[t.to_str() for t in ModelType],
|
183 |
+
value=[t.to_str() for t in ModelType],
|
184 |
+
interactive=True,
|
185 |
+
elem_id="filter-columns-type",
|
186 |
+
)
|
|
|
187 |
filter_columns_precision = gr.CheckboxGroup(
|
188 |
label="Precision",
|
189 |
choices=[i.value.name for i in Precision],
|