categories rename
Browse files
app.py
CHANGED
@@ -617,14 +617,14 @@ with demo:
|
|
617 |
|
618 |
with gr.Row():
|
619 |
search_input = gr.Textbox(
|
620 |
-
placeholder="Search models (
|
621 |
label="Search",
|
622 |
elem_id="search-bar",
|
623 |
scale=2
|
624 |
)
|
625 |
model_type_filter = gr.Dropdown(
|
626 |
choices=[t.to_str(" : ") for t in ModelType if t != ModelType.Unknown],
|
627 |
-
label="
|
628 |
multiselect=True,
|
629 |
value=[],
|
630 |
interactive=True,
|
@@ -632,7 +632,7 @@ with demo:
|
|
632 |
)
|
633 |
column_selector = gr.Dropdown(
|
634 |
choices=get_all_column_choices(),
|
635 |
-
label="
|
636 |
multiselect=True,
|
637 |
value=get_initial_columns(),
|
638 |
interactive=True,
|
|
|
617 |
|
618 |
with gr.Row():
|
619 |
search_input = gr.Textbox(
|
620 |
+
placeholder="Search by models (use ; to split)",
|
621 |
label="Search",
|
622 |
elem_id="search-bar",
|
623 |
scale=2
|
624 |
)
|
625 |
model_type_filter = gr.Dropdown(
|
626 |
choices=[t.to_str(" : ") for t in ModelType if t != ModelType.Unknown],
|
627 |
+
label="Access Type",
|
628 |
multiselect=True,
|
629 |
value=[],
|
630 |
interactive=True,
|
|
|
632 |
)
|
633 |
column_selector = gr.Dropdown(
|
634 |
choices=get_all_column_choices(),
|
635 |
+
label="Columns",
|
636 |
multiselect=True,
|
637 |
value=get_initial_columns(),
|
638 |
interactive=True,
|