BenchmarkBot commited on
Commit
541732b
β€’
1 Parent(s): 28d58c8

fix columns

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -210,7 +210,7 @@ with demo:
210
  )
211
 
212
  with gr.Row():
213
- with gr.Column(scale=2):
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"],