Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -12,7 +12,16 @@ io6 = gr.Interface.load("spaces/sayakpaul/sidd-denoising-maxim")
|
|
12 |
io7 = gr.Interface.load("spaces/sayakpaul/lol-enhancement-maxim")
|
13 |
|
14 |
with demo:
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12 |
io7 = gr.Interface.load("spaces/sayakpaul/lol-enhancement-maxim")
|
13 |
|
14 |
with demo:
|
15 |
+
gr.TabbedInterface(
|
16 |
+
[io1, io2, io3, io4, io5, io6, io7],
|
17 |
+
[
|
18 |
+
"Deraining",
|
19 |
+
"Dehazing_Outdoor",
|
20 |
+
"Dehazing_Indoor",
|
21 |
+
"Retouching",
|
22 |
+
"Deblurring",
|
23 |
+
"Denoising",
|
24 |
+
"Enhancement",
|
25 |
+
],
|
26 |
+
)
|
27 |
+
demo.launch()
|