Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
Update app.py
Browse files
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
|
|
|
|
|
|
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)
|