[Update]Comment model types
Browse files
app.py
CHANGED
@@ -169,13 +169,13 @@ with demo:
|
|
169 |
)
|
170 |
with gr.Column(min_width=320):
|
171 |
#with gr.Box(elem_id="box-filter"):
|
172 |
-
filter_columns_type = gr.CheckboxGroup(
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
)
|
179 |
filter_columns_precision = gr.CheckboxGroup(
|
180 |
label="Precision",
|
181 |
choices=[i.value.name for i in Precision],
|
|
|
169 |
)
|
170 |
with gr.Column(min_width=320):
|
171 |
#with gr.Box(elem_id="box-filter"):
|
172 |
+
# filter_columns_type = gr.CheckboxGroup(
|
173 |
+
# label="Unlearning types",
|
174 |
+
# choices=[t.to_str() for t in ModelType],
|
175 |
+
# value=[t.to_str() for t in ModelType],
|
176 |
+
# interactive=True,
|
177 |
+
# elem_id="filter-columns-type",
|
178 |
+
# )
|
179 |
filter_columns_precision = gr.CheckboxGroup(
|
180 |
label="Precision",
|
181 |
choices=[i.value.name for i in Precision],
|