Harveenchadha commited on
Commit
c7fcbf2
β€’
1 Parent(s): ba3082a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -44,8 +44,8 @@ iface = gr.Interface(
44
  fn=infer,
45
  title="Zero-DCE for low-light image enhancement",
46
  description = "Implementing Zero-Reference Deep Curve Estimation for low-light image enhancement.",
47
- inputs=[gr.inputs.Image(label="image", type="pil")],
48
- outputs=[gr.outputs.Image(label="image", type="numpy")],
49
  examples=examples,
50
  article = "**Original Author**: [Soumik Rakshit](https://github.com/soumik12345) <br>**HF Contribution**: [Harveen Singh Chadha](https://github.com/harveenchadha)<br>",
51
- ).launch(debug=True)
 
44
  fn=infer,
45
  title="Zero-DCE for low-light image enhancement",
46
  description = "Implementing Zero-Reference Deep Curve Estimation for low-light image enhancement.",
47
+ inputs=[gr.inputs.Image(label="Original Image", type="pil")],
48
+ outputs=[gr.outputs.Image(label="Enhanced Image", type="numpy")],
49
  examples=examples,
50
  article = "**Original Author**: [Soumik Rakshit](https://github.com/soumik12345) <br>**HF Contribution**: [Harveen Singh Chadha](https://github.com/harveenchadha)<br>",
51
+ ).launch(debug=True, enable_queue=False, cache_examples=True)