fffiloni commited on
Commit
5577032
1 Parent(s): 4e02c2a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -2
app.py CHANGED
@@ -68,8 +68,10 @@ with gr.Blocks(css=css) as demo:
68
  </p>
69
  """)
70
  with gr.Row():
71
- portrait_in = gr.Image(label="Your source portrait", type="filepath")
72
- result = gr.Image(label="Swapped SDXL Result")
 
 
73
  prompt_in = gr.Textbox(label="Prompt target")
74
  submit_btn = gr.Button("Submit")
75
 
 
68
  </p>
69
  """)
70
  with gr.Row():
71
+ with gr.Column():
72
+ portrait_in = gr.Image(label="Your source portrait", type="filepath")
73
+ with gr.Column():
74
+ result = gr.Image(label="Swapped SDXL Result")
75
  prompt_in = gr.Textbox(label="Prompt target")
76
  submit_btn = gr.Button("Submit")
77