Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
@@ -9,7 +9,8 @@ def sepia(input_img):
|
|
9 |
])
|
10 |
sepia_img = input_img.dot(sepia_filter.T)
|
11 |
sepia_img /= sepia_img.max()
|
12 |
-
|
|
|
13 |
|
14 |
-
demo = gr.Interface(sepia, gr.Image(), "
|
15 |
demo.launch()
|
|
|
9 |
])
|
10 |
sepia_img = input_img.dot(sepia_filter.T)
|
11 |
sepia_img /= sepia_img.max()
|
12 |
+
|
13 |
+
return 'conversion complete'
|
14 |
|
15 |
+
demo = gr.Interface(sepia, gr.Image(), "text")
|
16 |
demo.launch()
|