dakkoong commited on
Commit
e6de41f
1 Parent(s): 78634f3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -102,7 +102,10 @@ def sepia(input_img):
102
  return fig
103
 
104
  demo = gr.Interface(fn=sepia,
105
- inputs=gr.Image(shape=(1000, 600)),
106
  outputs=['plot'],
107
  examples=["cityoutdoor-1.jpg", "cityoutdoor-2.jpg", "cityoutdoor-3.jpg"],
108
  allow_flagging='never')
 
 
 
 
102
  return fig
103
 
104
  demo = gr.Interface(fn=sepia,
105
+ inputs=gr.Image(shape=(800, 600)),
106
  outputs=['plot'],
107
  examples=["cityoutdoor-1.jpg", "cityoutdoor-2.jpg", "cityoutdoor-3.jpg"],
108
  allow_flagging='never')
109
+
110
+
111
+ demo.launch()