muneebable commited on
Commit
29df5af
·
verified ·
1 Parent(s): 7004458

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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", shape=(400, 400))
193
- style_input = gr.Image(label="Style Image", type="numpy", image_mode="RGB", shape=(400, 400))
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