fffiloni commited on
Commit
293de33
1 Parent(s): 880934d

Fix height

Browse files
Files changed (1) hide show
  1. app.py +6 -2
app.py CHANGED
@@ -64,10 +64,14 @@ with gr.Blocks() as demo:
64
  with gr.Column():
65
  image = gr.Image(
66
  label="Image",
67
- type="filepath"
 
68
  )
69
  with gr.Column():
70
- result_image = gr.Image()
 
 
 
71
 
72
  submit_btn = gr.Button("Submit")
73
 
 
64
  with gr.Column():
65
  image = gr.Image(
66
  label="Image",
67
+ type="filepath",
68
+ height=512
69
  )
70
  with gr.Column():
71
+ result_image = gr.Image(
72
+ label="Output",
73
+ height=512
74
+ )
75
 
76
  submit_btn = gr.Button("Submit")
77