Spaces:
Sleeping
Sleeping
muneebable
commited on
Update app.py
Browse files
app.py
CHANGED
@@ -189,8 +189,8 @@ with gr.Blocks() as demo:
|
|
189 |
gr.Markdown("# Neural Style Transfer")
|
190 |
with gr.Row():
|
191 |
with gr.Column():
|
192 |
-
content_input = gr.Image(label="Content Image", type="numpy", image_mode="RGB",
|
193 |
-
style_input = gr.Image(label="Style Image", type="numpy", image_mode="RGB",
|
194 |
with gr.Column():
|
195 |
output_image = gr.Image(label="Output Image")
|
196 |
|
|
|
189 |
gr.Markdown("# Neural Style Transfer")
|
190 |
with gr.Row():
|
191 |
with gr.Column():
|
192 |
+
content_input = gr.Image(label="Content Image", type="numpy", image_mode="RGB", height=400, width=400)
|
193 |
+
style_input = gr.Image(label="Style Image", type="numpy", image_mode="RGB", height=400, width=400)
|
194 |
with gr.Column():
|
195 |
output_image = gr.Image(label="Output Image")
|
196 |
|