sayakpaul HF staff commited on
Commit
d0adf45
·
1 Parent(s): e4ca339

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -92,8 +92,8 @@ def infer(image):
92
  return Image.fromarray(np.array((np.clip(preds, 0.0, 1.0) * 255.0).astype(np.uint8)))
93
 
94
 
95
- title = "Deblur blurry images."
96
- description = f"The underlying model is [this](https://huggingface.co/{CKPT}). You can use the model to deblur blurry images. There is [another version of the model]('https://hf.co/sayakpaul/S-2_dehazing_sots-indoor') you can try out. 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."
97
 
98
  iface = gr.Interface(
99
  infer,
 
92
  return Image.fromarray(np.array((np.clip(preds, 0.0, 1.0) * 255.0).astype(np.uint8)))
93
 
94
 
95
+ title = "Dehaze hazy images."
96
+ description = f"The underlying model is [this](https://huggingface.co/{CKPT}). You can use the model to dehaze hazy images. There is [another version of the model]('https://hf.co/sayakpaul/S-2_dehazing_sots-indoor') you can try out. 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."
97
 
98
  iface = gr.Interface(
99
  infer,