Update app.py
Browse files
app.py
CHANGED
@@ -28,4 +28,4 @@ def sepia(inp):
|
|
28 |
sepia_img = sepia_img.reshape(img_height, img_width, 3)
|
29 |
return sepia_img
|
30 |
|
31 |
-
demo = gr.Interface(fn=sepia, inputs=gr.inputs.Image(256,256),outputs=
|
|
|
28 |
sepia_img = sepia_img.reshape(img_height, img_width, 3)
|
29 |
return sepia_img
|
30 |
|
31 |
+
demo = gr.Interface(fn=sepia, inputs=gr.inputs.Image(256,256),outputs=sepia_img).launch()
|