Update app.py
Browse files
app.py
CHANGED
@@ -9,5 +9,5 @@ def sepia(input_img):
|
|
9 |
sepia_img /= sepia_img.max()
|
10 |
return sepia_img
|
11 |
|
12 |
-
|
13 |
-
|
|
|
9 |
sepia_img /= sepia_img.max()
|
10 |
return sepia_img
|
11 |
|
12 |
+
iface = gr.Interface(sepia, gr.inputs.Image(shape=(200, 200)), "image", css=".footer{display:none !important}")
|
13 |
+
iface.launch()
|