to-be commited on
Commit
2921b2b
1 Parent(s): edbecfe

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -6
app.py CHANGED
@@ -13,10 +13,10 @@ import numpy as np
13
 
14
  examples = [['sample1.png'],
15
  ['sample2.png'],
16
- ['sample3.png'],
17
- ['sample4.png'],
18
- ['sample5.png'],
19
- ['sample6.png']]
20
 
21
 
22
  title = "Restormer"
@@ -24,8 +24,6 @@ description = """
24
  Gradio demo for <b>Restormer: Efficient Transformer for High-Resolution Image Restoration</b>, CVPR 2022--ORAL. <a href='https://arxiv.org/abs/2111.09881'>[Paper]</a><a href='https://github.com/swz30/Restormer'>[Github Code]</a>\n
25
  <b> Note:</b> Since this demo uses CPU, by default it will run on the downsampled version of the input image (for speedup). But if you want to perform inference on the original input, then choose the option "Full Resolution Image" from the dropdown menu.
26
  """
27
- ##With Restormer, you can perform: (1) Image Denoising, (2) Defocus Deblurring, (3) Motion Deblurring, and (4) Image Deraining.
28
- ##To use it, simply upload your own image, or click one of the examples provided below.
29
 
30
  article = "<p style='text-align: center'><a href='https://arxiv.org/abs/2111.09881'>Restormer: Efficient Transformer for High-Resolution Image Restoration </a> | <a href='https://github.com/swz30/Restormer'>Github Repo</a></p>"
31
 
 
13
 
14
  examples = [['sample1.png'],
15
  ['sample2.png'],
16
+ ['Sample3.png'],
17
+ ['Sample4.png'],
18
+ ['Sample5.png'],
19
+ ['ample6.png']]
20
 
21
 
22
  title = "Restormer"
 
24
  Gradio demo for <b>Restormer: Efficient Transformer for High-Resolution Image Restoration</b>, CVPR 2022--ORAL. <a href='https://arxiv.org/abs/2111.09881'>[Paper]</a><a href='https://github.com/swz30/Restormer'>[Github Code]</a>\n
25
  <b> Note:</b> Since this demo uses CPU, by default it will run on the downsampled version of the input image (for speedup). But if you want to perform inference on the original input, then choose the option "Full Resolution Image" from the dropdown menu.
26
  """
 
 
27
 
28
  article = "<p style='text-align: center'><a href='https://arxiv.org/abs/2111.09881'>Restormer: Efficient Transformer for High-Resolution Image Restoration </a> | <a href='https://github.com/swz30/Restormer'>Github Repo</a></p>"
29