Spaces:
Running
Running
BenchmarkBot
commited on
Commit
Β·
96e0ef8
1
Parent(s):
0eccf0c
fix box on search
Browse files
app.py
CHANGED
@@ -79,24 +79,24 @@ with demo:
|
|
79 |
gr.Markdown(INTRODUCTION_TEXT, elem_classes="markdown-text")
|
80 |
|
81 |
with gr.Row():
|
82 |
-
with gr.Column(scale=
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
|
|
89 |
|
90 |
with gr.Column(scale=1):
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
elem_id="backend-checkboxes",
|
98 |
|
99 |
-
|
100 |
|
101 |
with gr.Tabs(elem_classes="tab-buttons") as tabs:
|
102 |
with gr.TabItem("π₯οΈ A100-80GB Benchmark ποΈ", elem_id="A100-benchmark", id=0):
|
|
|
79 |
gr.Markdown(INTRODUCTION_TEXT, elem_classes="markdown-text")
|
80 |
|
81 |
with gr.Row():
|
82 |
+
with gr.Column(scale=2):
|
83 |
+
with gr.Box(elem_id="search-bar-table-box"):
|
84 |
+
search_bar = gr.Textbox(
|
85 |
+
label="Search π",
|
86 |
+
info="Search for a model",
|
87 |
+
placeholder="Write and press ENTER...",
|
88 |
+
elem_id="search-bar",
|
89 |
+
)
|
90 |
|
91 |
with gr.Column(scale=1):
|
92 |
+
backend_checkboxes = gr.CheckboxGroup(
|
93 |
+
choices=["pytorch", "onnxruntime"],
|
94 |
+
value=["pytorch", "onnxruntime"],
|
95 |
+
label="Backends π",
|
96 |
+
info="Select the backends",
|
97 |
+
elem_id="backend-checkboxes",
|
|
|
98 |
|
99 |
+
)
|
100 |
|
101 |
with gr.Tabs(elem_classes="tab-buttons") as tabs:
|
102 |
with gr.TabItem("π₯οΈ A100-80GB Benchmark ποΈ", elem_id="A100-benchmark", id=0):
|