sayakpaul HF staff commited on
Commit
1f7c5e9
1 Parent(s): 14ba602

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -91,14 +91,14 @@ def infer(image):
91
 
92
 
93
  title = "Denoise noisy images."
94
- article = "Model based on [this](https://huggingface.co/sayakpaul/S-3_denoising_sidd)."
95
 
96
  iface = gr.Interface(
97
  infer,
98
  inputs="image",
99
  outputs="image",
100
  title=title,
101
- article=article,
102
  allow_flagging="never",
103
  examples=[["0039_04.png"], ["0003_30.png"], ["0011_23.png"], ["0013_19.png"]],
104
  )
 
91
 
92
 
93
  title = "Denoise noisy images."
94
+ description = "The underlying model is [this](https://huggingface.co/sayakpaul/S-3_denoising_sidd). You can use the model to denoise noisy images. To quickly try out the model, you can choose from the available sample images below, or you can submit your own image. Not that, internally, the model is re-initialized based on the spatial dimensions of the input image and this process is time-consuming."
95
 
96
  iface = gr.Interface(
97
  infer,
98
  inputs="image",
99
  outputs="image",
100
  title=title,
101
+ description=description,
102
  allow_flagging="never",
103
  examples=[["0039_04.png"], ["0003_30.png"], ["0011_23.png"], ["0013_19.png"]],
104
  )