Hu commited on
Commit
c373d06
·
1 Parent(s): feb4f18

updage description

Browse files
Files changed (1) hide show
  1. app.py +9 -3
app.py CHANGED
@@ -11,12 +11,18 @@ title = "Super Resolution with CNN"
11
  description = """
12
 
13
  Your low resolution image will be reconstructed to high resolution with a scale of 2 with a convolutional neural network!<br>
14
- CNN output on the left, bicubic interpolation output on the right.<br>
15
- Training and dataset can be found on my [github page](https://github.com/susuhu/super-resolution/blob/main/Super_Resolution.ipynb).<br>
16
 
17
  """
18
 
19
- article = "Check out the origianl [paper](https://arxiv.org/abs/1501.00092) proposed by Dong *et al*."
 
 
 
 
 
 
20
 
21
  # load model
22
  print("Loading SRCNN model...")
 
11
  description = """
12
 
13
  Your low resolution image will be reconstructed to high resolution with a scale of 2 with a convolutional neural network!<br>
14
+
15
+ Detailed training and dataset can be found on my [github repo](https://github.com/susuhu/super-resolution).<br>
16
 
17
  """
18
 
19
+ article = """
20
+ <div style='margin:20px auto;'>
21
+ <p>Sources:<p>
22
+ <p>📜 <a href="https://arxiv.org/abs/1501.00092">Image Super-Resolution Using Deep Convolutional Networks</a></p>
23
+ <p>📦 Dataset <a href="https://github.com/eugenesiow/super-image-data">this GitHub repo</a></p>
24
+ </div>
25
+ """
26
 
27
  # load model
28
  print("Loading SRCNN model...")