codeslake commited on
Commit
18d9300
1 Parent(s): c042eae

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -56,6 +56,6 @@ description="Demo application for Reference-based Video Super-Resolution. Upload
56
 
57
  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>"
58
 
59
- examples=[['LR.png'], ['Ref.png']]
60
 
61
- 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)
 
56
 
57
  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>"
58
 
59
+ examples=[[['LR.png'], ['Ref.png']]]
60
 
61
+ 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)