Update app.py
Browse files
app.py
CHANGED
@@ -52,9 +52,10 @@ def inference(LR, Ref):
|
|
52 |
return "result/0000.png"
|
53 |
|
54 |
title="RefVSR"
|
55 |
-
description="Demo application for Reference-based Video Super-Resolution (RefVSR).\nInstruction: Upload a low-resolution frame and a reference frame to 'LR' and 'Ref' input windows, respectively.\nNote 1: This demo only supports RefVSR for a single LR and Ref frame due to computational complexity. Hence, the model might not take advantage of temporal frames. \
|
|
|
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 |
|
|
|
52 |
return "result/0000.png"
|
53 |
|
54 |
title="RefVSR"
|
55 |
+
#description="Demo application for Reference-based Video Super-Resolution (RefVSR).\nInstruction: Upload a low-resolution frame and a reference frame to 'LR' and 'Ref' input windows, respectively.\nNote 1: This demo only supports RefVSR for a single LR and Ref frame due to computational complexity. Hence, the model might not take advantage of temporal frames. \nNote 2: The model is our small 8K model trained with the proposed two-stage training strategy. \nNote 3: The spatial size of input LR and Ref frames is 1920x1080 (HD), in the PNG format."
|
56 |
+
description="Demo application for Reference-based Video Super-Resolution (RefVSR).Upload a low-resolution frame and a reference frame to 'LR' and 'Ref' input windows, respectively."
|
57 |
|
58 |
+
article = "<p style='text-align: center'>This demo only supports RefVSR for a single LR and Ref frame due to computational complexity. Hence, the model might not take advantage of temporal frames. \nNote 2: The model is our small 8K model trained with the proposed two-stage training strategy.</p><p style='text-align: center'>The spatial size of input LR and Ref frames is 1920x1080 (HD), in the PNG format.</p><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>"
|
59 |
|
60 |
examples=[[['LR.png'], ['Ref.png']]]
|
61 |
|