sayakpaul HF staff commited on
Commit
b481fd2
1 Parent(s): 198a446

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -12,7 +12,7 @@ from create_maxim_model import Model
12
  from maxim.configs import MAXIM_CONFIGS
13
 
14
 
15
- _MODEL = from_pretrained_keras("sayakpaul/S-2_enhancement_lol")
16
 
17
 
18
  def mod_padding_symmetric(image, factor=64):
@@ -92,7 +92,7 @@ def infer(image):
92
 
93
 
94
  title = "Enhance low-light images."
95
- description = "The underlying model is [this](https://huggingface.co/sayakpaul/S-2_enhancement_lol). You can use the model to enhance low-light images, which may be useful for aiding vision-impaired people. 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."
96
 
97
  iface = gr.Interface(
98
  infer,
 
12
  from maxim.configs import MAXIM_CONFIGS
13
 
14
 
15
+ _MODEL = from_pretrained_keras("google/maxim-s2-enhancement-lol")
16
 
17
 
18
  def mod_padding_symmetric(image, factor=64):
 
92
 
93
 
94
  title = "Enhance low-light images."
95
+ description = "The underlying model is [this](https://huggingface.co/google/maxim-s2-enhancement-lol). You can use the model to enhance low-light images, which may be useful for aiding vision-impaired people. 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."
96
 
97
  iface = gr.Interface(
98
  infer,