Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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)
|