codeslake commited on
Commit
cdceb82
·
1 Parent(s): 58e4526

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -50,10 +50,10 @@ def inference(LR, Ref):
50
  return "result/0000.png"
51
 
52
  title="RefVSR"
53
- description="Demo application for Reference-based Video Super-Resolution. To use it, simply upload your image or click on one of the examples to load them. Read more at the links below."
54
 
55
  article = "<p style='text-align: center'><a href='https://junyonglee.me/projects/RefVSR' target='_blank'>Project</a> | <a href='https://arxiv.org/abs/2203.14537' target='_blank'>arXiv</a> | <a href='https://github.com/codeslake/RefVSR' target='_blank'>Github</a></p>"
56
 
57
- examples=[['LR.png'], ['Ref.png']]
58
 
59
  gr.Interface(inference,[gr.inputs.Image(type="pil"), gr.inputs.Image(type="pil")],gr.outputs.Image(type="file"),title=title,description=description,article=article,theme ="peach",examples=examples).launch(enable_queue=True)
 
50
  return "result/0000.png"
51
 
52
  title="RefVSR"
53
+ description="Demo application for Reference-based Video Super-Resolution. Upload a low-resolution frame and a reference frame to 'LR' and 'Ref' input windows, respectively."
54
 
55
  article = "<p style='text-align: center'><a href='https://junyonglee.me/projects/RefVSR' target='_blank'>Project</a> | <a href='https://arxiv.org/abs/2203.14537' target='_blank'>arXiv</a> | <a href='https://github.com/codeslake/RefVSR' target='_blank'>Github</a></p>"
56
 
57
+ examples=[['LR.png', 'Ref.png']]
58
 
59
  gr.Interface(inference,[gr.inputs.Image(type="pil"), gr.inputs.Image(type="pil")],gr.outputs.Image(type="file"),title=title,description=description,article=article,theme ="peach",examples=examples).launch(enable_queue=True)