Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
@@ -283,27 +283,28 @@ Select a CPU or GPU accelerated compute option for inference""")
|
|
283 |
)
|
284 |
|
285 |
with gr.Row():
|
286 |
-
with gr.
|
287 |
-
gr.
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
|
297 |
-
|
298 |
-
gr.
|
299 |
-
|
300 |
-
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
|
|
307 |
|
308 |
with gr.Column():
|
309 |
gr.Markdown("""## Security Level
|
|
|
283 |
)
|
284 |
|
285 |
with gr.Row():
|
286 |
+
with gr.Row():
|
287 |
+
with gr.Column():
|
288 |
+
gr.Markdown("""## Min Number of Nodes
|
289 |
+
|
290 |
+
Automatically scale the number of replicas based on load and compute usage""")
|
291 |
+
min_node_selector = gr.Number(
|
292 |
+
value=1,
|
293 |
+
interactive=True,
|
294 |
+
show_label=False,
|
295 |
+
elem_classes=["no-label", "small-big"]
|
296 |
+
)
|
297 |
+
|
298 |
+
with gr.Column():
|
299 |
+
gr.Markdown("""## Max Number of Nodes
|
300 |
+
|
301 |
+
Automatically scale the number of replicas based on load and compute usage""")
|
302 |
+
max_node_selector = gr.Number(
|
303 |
+
value=1,
|
304 |
+
interactive=True,
|
305 |
+
show_label=False,
|
306 |
+
elem_classes=["no-label", "small-big"]
|
307 |
+
)
|
308 |
|
309 |
with gr.Column():
|
310 |
gr.Markdown("""## Security Level
|