Bmo411 commited on
Commit
6bdd0c3
·
verified ·
1 Parent(s): a23fa08

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -11,5 +11,5 @@ def sepia(input_img):
11
  sepia_img /= sepia_img.max()
12
  return sepia_img
13
 
14
- demo = gr.Interface(sepia, gr.Image(), "image")
15
  demo.launch()
 
11
  sepia_img /= sepia_img.max()
12
  return sepia_img
13
 
14
+ demo = gr.Interface(sepia, gr.Image(), outputs=["image", "image"])
15
  demo.launch()