Spaces:
Sleeping
Sleeping
new layout
Browse files
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 |
-
|
34 |
-
|
|
|
|
|
|
|
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")
|