Spaces:
Running
Running
BenchmarkBot
commited on
Commit
β’
4e5004d
1
Parent(s):
3bf1b02
test
Browse files
app.py
CHANGED
@@ -92,29 +92,25 @@ with demo:
|
|
92 |
gr.Markdown(INTRODUCTION_TEXT, elem_classes="markdown-text")
|
93 |
|
94 |
with gr.Row():
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
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"):
|