danielsapit commited on
Commit
2473b0f
·
1 Parent(s): afbe1a9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -116,7 +116,7 @@ interface = gr.Interface(
116
  gr.inputs.Checkbox(label="Grayscale (Check this if your image is grayscale)"),
117
  gr.inputs.Slider(minimum=1, maximum=100, step=1, label="Intensity (Higher = stronger JPEG artifact removal)"),
118
  gr.inputs.Checkbox(default=False, label="Edit Zoom preview (This is optional. "
119
- "Check this after the image result is loaded to edit zoom parameters"
120
  "without processing the input image.)"),
121
  gr.inputs.Slider(minimum=10, maximum=100, step=1, default=50, label="Zoom Image "
122
  "(Use this to see the image quality up close. "
@@ -139,9 +139,9 @@ interface = gr.Interface(
139
  ["elon_musk.jpg",False,45,False,15,33,30]],
140
  title = "JPEG Artifacts Removal [FBCNN]",
141
  description = "Gradio Demo for JPEG Artifacts Removal. To use it, simply upload your image, "
142
- "or click one of the examples to load them. Checkout the original GitHub at the link below. "
143
  "JPEG artifacts are noticeable distortion of images caused by JPEG lossy compression. "
144
  "This is not a super resolution AI but a JPEG compression artifact remover.",
145
- article = "<p style='text-align: center'><a href='https://github.com/jiaxi-jiang/FBCNN' target='_blank'>FBCNN Github Repo</a></p>",
146
  allow_flagging="never"
147
  ).launch(enable_queue=True)
 
116
  gr.inputs.Checkbox(label="Grayscale (Check this if your image is grayscale)"),
117
  gr.inputs.Slider(minimum=1, maximum=100, step=1, label="Intensity (Higher = stronger JPEG artifact removal)"),
118
  gr.inputs.Checkbox(default=False, label="Edit Zoom preview (This is optional. "
119
+ "Check this after the image result is loaded to edit zoom parameters "
120
  "without processing the input image.)"),
121
  gr.inputs.Slider(minimum=10, maximum=100, step=1, default=50, label="Zoom Image "
122
  "(Use this to see the image quality up close. "
 
139
  ["elon_musk.jpg",False,45,False,15,33,30]],
140
  title = "JPEG Artifacts Removal [FBCNN]",
141
  description = "Gradio Demo for JPEG Artifacts Removal. To use it, simply upload your image, "
142
+ "or click one of the examples to load them. Checkout the paper and the original GitHub at the link below. "
143
  "JPEG artifacts are noticeable distortion of images caused by JPEG lossy compression. "
144
  "This is not a super resolution AI but a JPEG compression artifact remover.",
145
+ article = "<p style='text-align: center;'><a href='https://github.com/jiaxi-jiang/FBCNN'>FBCNN GitHub Repo</a><br><a href='https://arxiv.org/abs/2109.14573'>Towards Flexible Blind JPEG Artifacts Removal (FBCNN, ICCV 2021)</a></p>",
146
  allow_flagging="never"
147
  ).launch(enable_queue=True)