xx
Browse files
app.py
CHANGED
|
@@ -263,6 +263,13 @@ with demo:
|
|
| 263 |
interactive=True
|
| 264 |
)
|
| 265 |
"""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 266 |
with gr.Column(min_width=320):
|
| 267 |
#with gr.Box(elem_id="box-filter"):
|
| 268 |
filter_columns_type = gr.CheckboxGroup(
|
|
|
|
| 263 |
interactive=True
|
| 264 |
)
|
| 265 |
"""
|
| 266 |
+
hide_models = gr.CheckboxGroup(
|
| 267 |
+
label="Hide models",
|
| 268 |
+
choices = ["Private or deleted", "Contains a merge/moerge", "Flagged", "MoE"],
|
| 269 |
+
value=[],
|
| 270 |
+
visible=False,
|
| 271 |
+
interactive=True
|
| 272 |
+
)
|
| 273 |
with gr.Column(min_width=320):
|
| 274 |
#with gr.Box(elem_id="box-filter"):
|
| 275 |
filter_columns_type = gr.CheckboxGroup(
|