vumichien commited on
Commit
4b51216
β€’
1 Parent(s): 353d68f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -24,6 +24,10 @@ def infer(original_image):
24
 
25
  iface = gr.Interface(
26
  fn=infer,
 
 
27
  inputs=[gr.inputs.Image(label="image", type="pil")],
28
  outputs="image",
29
- examples=examples).launch(debug=True)
 
 
 
24
 
25
  iface = gr.Interface(
26
  fn=infer,
27
+ title="Low light image enhancement",
28
+ description = "Keras Implementation of MIRNet model for light up the dark image πŸŒ†πŸŽ†",
29
  inputs=[gr.inputs.Image(label="image", type="pil")],
30
  outputs="image",
31
+ examples=examples,
32
+ article = "Author: <a href=\"https://huggingface.co/vumichien\">Vu Minh Chien</a>.Based on the keras example from <a href=\"https://keras.io/examples/vision/mirnet/\">Soumik Rakshit</a>",
33
+ ).launch(debug=True)