sunnychenxiwang commited on
Commit
e1bbae5
1 Parent(s): ca86d9d
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -50,6 +50,6 @@ def sepia(input_img):
50
  sepia_img /= sepia_img.max()
51
  return sepia_img
52
  #shape设置输入图像大小
53
- demo = gr.Interface(sepia, gr.Image(shape=(200, 200)), "image")
54
  demo.launch()
55
 
 
50
  sepia_img /= sepia_img.max()
51
  return sepia_img
52
  #shape设置输入图像大小
53
+ demo = gr.Interface(sepia, gr.Image(), "image")
54
  demo.launch()
55