JinHyeong99 commited on
Commit
28ef781
·
1 Parent(s): 9c81346
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -102,9 +102,9 @@ def sepia(input_img):
102
  return fig
103
 
104
  demo = gr.Interface(fn=sepia,
105
- inputs=gr.Image(shape=(400, 600)),
106
  outputs=['plot'],
107
- examples=["person-1.jpg", "person-2.jpg", "person-3.jpg", "person-4.jpg", "person-5.jpg"],
108
  allow_flagging='never')
109
 
110
 
 
102
  return fig
103
 
104
  demo = gr.Interface(fn=sepia,
105
+ inputs=gr.Image(shape=(400, 600), type='pil'),
106
  outputs=['plot'],
107
+ examples=["image1.jpg", "image2.jpg", "image3.jpg"],
108
  allow_flagging='never')
109
 
110