Julián Tachella commited on
Commit
1b64684
·
1 Parent(s): 501b516
Files changed (1) hide show
  1. app.py +4 -4
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.inputs.Image()
27
- output_images = gr.outputs.Image(label='Denoised Image')
28
- noise_image = gr.outputs.Image(label='Noisy Image')
29
- input_image_output = gr.outputs.Image(label='Input Image')
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(