Nick088 commited on
Commit
a13f788
·
verified ·
1 Parent(s): 620d5c5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -2
app.py CHANGED
@@ -13,7 +13,9 @@ tab_img = gr.Interface(
13
  outputs=output_image,
14
  title="Real-ESRGAN Pytorch",
15
  description="Gradio UI for Real-ESRGAN Pytorch version. To use it, simply upload your image, or click one of examples and choose the model. Read more at the links below. Please click submit only once <br>Credits: [Nick088](https://linktr.ee/Nick088), Xinntao, Tencent, Geeve George, ai-forever, daroche <br><p style='text-align: center'><a href='https://arxiv.org/abs/2107.10833'>Real-ESRGAN: Training Real-World Blind Super-Resolution with Pure Synthetic Data</a> | <a href='https://github.com/ai-forever/Real-ESRGAN'>Github Repo</a></p>",
16
- examples=["./test 1900.jpg", "x4"]
 
 
17
  )
18
 
19
  input_video = gr.Video(label='Input Video')
@@ -27,7 +29,9 @@ tab_vid = gr.Interface(
27
  outputs=output_video,
28
  title="Real-ESRGAN Pytorch",
29
  description="Gradio UI for Real-ESRGAN Pytorch version. To use it, simply upload your video, or click one of examples and choose the model. Read more at the links below. Please click submit only once <br>Credits: [Nick088](https://linktr.ee/Nick088), Xinntao, Tencent, Geeve George, ai-forever, daroche <br><p style='text-align: center'><a href='https://arxiv.org/abs/2107.10833'>Real-ESRGAN: Training Real-World Blind Super-Resolution with Pure Synthetic Data</a> | <a href='https://github.com/ai-forever/Real-ESRGAN'>Github Repo</a></p>",
30
- examples=["./1900.mp4", "x2"]
 
 
31
  )
32
 
33
  demo = gr.TabbedInterface([tab_img, tab_vid], ["Image", "Video"])
 
13
  outputs=output_image,
14
  title="Real-ESRGAN Pytorch",
15
  description="Gradio UI for Real-ESRGAN Pytorch version. To use it, simply upload your image, or click one of examples and choose the model. Read more at the links below. Please click submit only once <br>Credits: [Nick088](https://linktr.ee/Nick088), Xinntao, Tencent, Geeve George, ai-forever, daroche <br><p style='text-align: center'><a href='https://arxiv.org/abs/2107.10833'>Real-ESRGAN: Training Real-World Blind Super-Resolution with Pure Synthetic Data</a> | <a href='https://github.com/ai-forever/Real-ESRGAN'>Github Repo</a></p>",
16
+ examples=[
17
+ ["test 1900.jpg", "x4"]
18
+ ]
19
  )
20
 
21
  input_video = gr.Video(label='Input Video')
 
29
  outputs=output_video,
30
  title="Real-ESRGAN Pytorch",
31
  description="Gradio UI for Real-ESRGAN Pytorch version. To use it, simply upload your video, or click one of examples and choose the model. Read more at the links below. Please click submit only once <br>Credits: [Nick088](https://linktr.ee/Nick088), Xinntao, Tencent, Geeve George, ai-forever, daroche <br><p style='text-align: center'><a href='https://arxiv.org/abs/2107.10833'>Real-ESRGAN: Training Real-World Blind Super-Resolution with Pure Synthetic Data</a> | <a href='https://github.com/ai-forever/Real-ESRGAN'>Github Repo</a></p>",
32
+ examples=[
33
+ ["1900.mp4", "x2"]
34
+ ]
35
  )
36
 
37
  demo = gr.TabbedInterface([tab_img, tab_vid], ["Image", "Video"])