Spaces:
Running
Running
Commit
Β·
541732b
1
Parent(s):
28d58c8
fix columns
Browse files
app.py
CHANGED
|
@@ -210,7 +210,7 @@ with demo:
|
|
| 210 |
)
|
| 211 |
|
| 212 |
with gr.Row():
|
| 213 |
-
with gr.Column(scale=
|
| 214 |
backend_checkboxes = gr.CheckboxGroup(
|
| 215 |
label="Backends π",
|
| 216 |
choices=["pytorch", "onnxruntime"],
|
|
@@ -218,6 +218,7 @@ with demo:
|
|
| 218 |
info="βοΈ Select the backends",
|
| 219 |
elem_id="backend-checkboxes",
|
| 220 |
)
|
|
|
|
| 221 |
datatype_checkboxes = gr.CheckboxGroup(
|
| 222 |
label="Datatypes π₯",
|
| 223 |
choices=["float32", "float16"],
|
|
|
|
| 210 |
)
|
| 211 |
|
| 212 |
with gr.Row():
|
| 213 |
+
with gr.Column(scale=1):
|
| 214 |
backend_checkboxes = gr.CheckboxGroup(
|
| 215 |
label="Backends π",
|
| 216 |
choices=["pytorch", "onnxruntime"],
|
|
|
|
| 218 |
info="βοΈ Select the backends",
|
| 219 |
elem_id="backend-checkboxes",
|
| 220 |
)
|
| 221 |
+
with gr.Column(scale=1):
|
| 222 |
datatype_checkboxes = gr.CheckboxGroup(
|
| 223 |
label="Datatypes π₯",
|
| 224 |
choices=["float32", "float16"],
|