chansung commited on
Commit
976429f
·
1 Parent(s): 560ca38

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +19 -20
app.py CHANGED
@@ -277,26 +277,25 @@ Name for your new endpoint""")
277
  )
278
 
279
  with gr.Row():
280
- with gr.Row(scale=1):
281
- with gr.Column():
282
- gr.Markdown("""### Min Number of Nodes""")
283
- min_node_selector = gr.Number(
284
- value=1,
285
- interactive=True,
286
- show_label=False,
287
- elem_classes=["no-label", "small-big"]
288
- )
289
-
290
- with gr.Column():
291
- gr.Markdown("""### Max Number of Nodes""")
292
- max_node_selector = gr.Number(
293
- value=1,
294
- interactive=True,
295
- show_label=False,
296
- elem_classes=["no-label", "small-big"]
297
- )
298
-
299
- with gr.Column(scale=2):
300
  gr.Markdown("""### Security Level""")
301
  security_selector = gr.Radio(
302
  choices=["Protected", "Public", "Private"],
 
277
  )
278
 
279
  with gr.Row():
280
+ with gr.Column():
281
+ gr.Markdown("""### Min Number of Nodes""")
282
+ min_node_selector = gr.Number(
283
+ value=1,
284
+ interactive=True,
285
+ show_label=False,
286
+ elem_classes=["no-label", "small-big"]
287
+ )
288
+
289
+ with gr.Column():
290
+ gr.Markdown("""### Max Number of Nodes""")
291
+ max_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("""### Security Level""")
300
  security_selector = gr.Radio(
301
  choices=["Protected", "Public", "Private"],