vumichien commited on
Commit
7a54cdb
β€’
1 Parent(s): 508f164

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -0
app.py CHANGED
@@ -22,6 +22,9 @@ def infer(original_image):
22
 
23
  iface = gr.Interface(
24
  fn=infer,
 
 
25
  inputs=[gr.inputs.Image(label="image", type="pil")],
26
  outputs="image",
 
27
  examples=examples).launch(debug=True)
 
22
 
23
  iface = gr.Interface(
24
  fn=infer,
25
+ title="Low light image enhancement",
26
+ description = "MIRNet model for light up the dark image πŸŒ†πŸŽ†",
27
  inputs=[gr.inputs.Image(label="image", type="pil")],
28
  outputs="image",
29
+ article = "Author: <a href=\"https://huggingface.co/vumichien\">Vu Minh Chien</a>."
30
  examples=examples).launch(debug=True)