Spaces:
Sleeping
Sleeping
[Update]Add model1_column
Browse files
app.py
CHANGED
@@ -127,6 +127,13 @@ with demo:
|
|
127 |
show_label=False,
|
128 |
elem_id="search-bar",
|
129 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
130 |
# with gr.Column(min_width=320):
|
131 |
with gr.Row():
|
132 |
shown_columns_1 = gr.CheckboxGroup(
|
|
|
127 |
show_label=False,
|
128 |
elem_id="search-bar",
|
129 |
)
|
130 |
+
with gr.Row():
|
131 |
+
model1_column = gr.CheckboxGroup(
|
132 |
+
label="Unlearning Methods",
|
133 |
+
choices=methods,
|
134 |
+
interactive=True,
|
135 |
+
elem_id="column-select",
|
136 |
+
)
|
137 |
# with gr.Column(min_width=320):
|
138 |
with gr.Row():
|
139 |
shown_columns_1 = gr.CheckboxGroup(
|