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

Update app.py

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