Spaces:
Runtime error
Runtime error
Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
|
3 |
+
demo = gr.Blocks()
|
4 |
+
|
5 |
+
io1 = gr.Interface.load("spaces/sayakpaul/raindrop-deraining-maxim")
|
6 |
+
io2 = gr.Interface.load("spaces/sayakpaul/sots-outdoor-dehazing-maxim")
|
7 |
+
io3 = gr.Interface.load("spaces/sayakpaul/sots-indoor-dehazing-maxim")
|
8 |
+
io4 = gr.Interface.load("spaces/sayakpaul/fivek-retouching-maxim")
|
9 |
+
|
10 |
+
io5 = gr.Interface.load("spaces/sayakpaul/gopro-deblurring-maxim")
|
11 |
+
io6 = gr.Interface.load("spaces/sayakpaul/sidd-denoising-maxim")
|
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], ["Deraining", "Dehazing_Outdoor", "Dehazing_Indoor", "Retouching", "Deblurring", "Denoising", "Enhancement"]
|
17 |
+
)
|
18 |
+
demo.launch()
|