Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -14,9 +14,7 @@ def sepia(input_img):
|
|
14 |
sepia_img /= sepia_img.max()
|
15 |
return sepia_img
|
16 |
|
17 |
-
|
18 |
-
|
19 |
-
sepia_filter = gr.Interface(sepia, gr.Image(), "image")
|
20 |
|
21 |
with gr.Blocks() as generated_output:
|
22 |
gr.Markdown(
|
@@ -29,5 +27,7 @@ with gr.Blocks() as generated_output:
|
|
29 |
inp.change(welcome, inp, out)
|
30 |
|
31 |
|
|
|
|
|
32 |
if __name__ == "__main__":
|
33 |
-
|
|
|
14 |
sepia_img /= sepia_img.max()
|
15 |
return sepia_img
|
16 |
|
17 |
+
sepia_interface = gr.Interface(sepia, gr.Image(), "image")
|
|
|
|
|
18 |
|
19 |
with gr.Blocks() as generated_output:
|
20 |
gr.Markdown(
|
|
|
27 |
inp.change(welcome, inp, out)
|
28 |
|
29 |
|
30 |
+
demoApp = gr.TabbedInterface([sepia_interface, generated_output], ["RGB Sepia Filter", "Handwritten to Text"])
|
31 |
+
|
32 |
if __name__ == "__main__":
|
33 |
+
demoApp.launch()
|