leonelhs commited on
Commit
3b9ffab
1 Parent(s): 642e146

new layout

Browse files
Files changed (1) hide show
  1. app.py +5 -2
app.py CHANGED
@@ -30,8 +30,11 @@ with gr.Blocks(title="Style Transfer") as app:
30
  gr.HTML("<center><h3>Fast Style Transfer for Arbitrary Styles</h3></center>")
31
  with gr.Row(equal_height=False):
32
  with gr.Column():
33
- content_img = gr.Image(type="filepath", label="Content image")
34
- style_img = gr.Image(type="filepath", label="Style image")
 
 
 
35
  run_btn = gr.Button(variant="primary")
36
  with gr.Column():
37
  output_img = gr.Image(type="pil", label="Output image")
 
30
  gr.HTML("<center><h3>Fast Style Transfer for Arbitrary Styles</h3></center>")
31
  with gr.Row(equal_height=False):
32
  with gr.Column():
33
+ with gr.Row(equal_height=True):
34
+ with gr.Column():
35
+ content_img = gr.Image(type="filepath", label="Content image")
36
+ with gr.Column():
37
+ style_img = gr.Image(type="filepath", label="Style image")
38
  run_btn = gr.Button(variant="primary")
39
  with gr.Column():
40
  output_img = gr.Image(type="pil", label="Output image")