RamAnanth1 commited on
Commit
73ed439
·
verified ·
1 Parent(s): 5bf4118

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -4
app.py CHANGED
@@ -42,10 +42,13 @@ def run(image, model_name):
42
 
43
  with gr.Blocks() as demo:
44
  with gr.Group():
45
- image = gr.Image(label="Input image", show_label=False, type="pil", height=320)
46
- model_name = gr.Textbox(label="Model name", show_label=False)
47
- run_button = gr.Button("Run")
48
- result = gr.Model3D(label="Result", show_label=False)
 
 
 
49
 
50
  run_button.click(
51
  fn=run,
 
42
 
43
  with gr.Blocks() as demo:
44
  with gr.Group():
45
+ with gr.Row(variant='panel'):
46
+ with gr.Column(scale=1):
47
+ image = gr.Image(label="Input image", show_label=False, type="pil", height=320)
48
+ model_name = gr.Textbox(label="Model name", show_label=False)
49
+ run_button = gr.Button("Run")
50
+ with gr.Column(scale=1):
51
+ result = gr.Model3D(label="Result", show_label=False)
52
 
53
  run_button.click(
54
  fn=run,