BenchmarkBot commited on
Commit
4e5004d
β€’
1 Parent(s): 3bf1b02
Files changed (1) hide show
  1. app.py +19 -23
app.py CHANGED
@@ -92,29 +92,25 @@ with demo:
92
  gr.Markdown(INTRODUCTION_TEXT, elem_classes="markdown-text")
93
 
94
  with gr.Row():
95
- with gr.Column(scale=2):
96
- search_bar = gr.Textbox(
97
- label=None,
98
- info="πŸ”Ž Search for a model and press Submit πŸš€",
99
- elem_id="search-bar",
100
- )
101
-
102
- with gr.Column(scale=1):
103
- backend_checkboxes = gr.CheckboxGroup(
104
- choices=["pytorch", "onnxruntime"],
105
- value=["pytorch"],
106
- label="Backends 🏭",
107
- info="Select the backends",
108
- elem_id="backend-checkboxes",
109
- )
110
- with gr.Column(scale=1):
111
- datatype_checkboxes = gr.CheckboxGroup(
112
- choices=["float32", "float16"],
113
- value=["float32", "float16"],
114
- label="Datatypes πŸ“₯",
115
- info="Select the load datatypes",
116
- elem_id="datatype-checkboxes",
117
- )
118
 
119
  with gr.Row():
120
  with gr.Box(elem_id="threshold-slider-box"):
 
92
  gr.Markdown(INTRODUCTION_TEXT, elem_classes="markdown-text")
93
 
94
  with gr.Row():
95
+ search_bar = gr.Textbox(
96
+ label="Search πŸ”Ž",
97
+ info="Search for a model and press Submit πŸš€",
98
+ elem_id="search-bar",
99
+ )
100
+ backend_checkboxes = gr.CheckboxGroup(
101
+ choices=["pytorch", "onnxruntime"],
102
+ value=["pytorch"],
103
+ label="Backends 🏭",
104
+ info="Select the backends",
105
+ elem_id="backend-checkboxes",
106
+ )
107
+ datatype_checkboxes = gr.CheckboxGroup(
108
+ choices=["float32", "float16"],
109
+ value=["float32", "float16"],
110
+ label="Datatypes πŸ“₯",
111
+ info="Select the load datatypes",
112
+ elem_id="datatype-checkboxes",
113
+ )
 
 
 
 
114
 
115
  with gr.Row():
116
  with gr.Box(elem_id="threshold-slider-box"):