BenchmarkBot commited on
Commit
ce249f3
β€’
1 Parent(s): 4e5004d
Files changed (1) hide show
  1. app.py +7 -5
app.py CHANGED
@@ -92,11 +92,13 @@ with demo:
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"],
 
92
  gr.Markdown(INTRODUCTION_TEXT, elem_classes="markdown-text")
93
 
94
  with gr.Row():
95
+ with gr.Box(elem_id="search-bar-box"):
96
+ search_bar = gr.Textbox(
97
+ label="Search πŸ”Ž",
98
+ info="Search for a model and press Submit πŸš€",
99
+ elem_id="search-bar",
100
+ )
101
+
102
  backend_checkboxes = gr.CheckboxGroup(
103
  choices=["pytorch", "onnxruntime"],
104
  value=["pytorch"],