Spaces:
Sleeping
Sleeping
Julián Tachella
commited on
Commit
·
1b64684
1
Parent(s):
501b516
test
Browse files
app.py
CHANGED
@@ -23,10 +23,10 @@ def image_mod(image):
|
|
23 |
return torch_to_pil(noisy), torch_to_pil(estimated)
|
24 |
|
25 |
|
26 |
-
input_image = gr.
|
27 |
-
output_images = gr.
|
28 |
-
noise_image = gr.
|
29 |
-
input_image_output = gr.
|
30 |
|
31 |
|
32 |
demo = gr.Interface(
|
|
|
23 |
return torch_to_pil(noisy), torch_to_pil(estimated)
|
24 |
|
25 |
|
26 |
+
input_image = gr.components.Image(label='Input Image')
|
27 |
+
output_images = gr.components.Image(label='Denoised Image')
|
28 |
+
noise_image = gr.components.Image(label='Noisy Image')
|
29 |
+
input_image_output = gr.components.Image(label='Input Image')
|
30 |
|
31 |
|
32 |
demo = gr.Interface(
|