JustKiddo commited on
Commit
413f3b3
·
verified ·
1 Parent(s): c886005

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -14,7 +14,7 @@ def sepia(input_img):
14
  sepia_img /= sepia_img.max()
15
  return sepia_img
16
 
17
- demo = gr.Interface(sepia, gr.Image(), "image")
18
 
19
  if __name__ == "__main__":
20
  demo.launch()
 
14
  sepia_img /= sepia_img.max()
15
  return sepia_img
16
 
17
+ demo = gr.Interface(sepia, gr.Image(), "image", gr.Textbox())
18
 
19
  if __name__ == "__main__":
20
  demo.launch()