Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -26,6 +26,9 @@ def infer(image):
|
|
26 |
|
27 |
iface = gr.Interface(
|
28 |
fn=infer,
|
|
|
|
|
29 |
inputs=[gr.inputs.Image(label="image", type="numpy", shape=(640, 480))],
|
30 |
outputs="image",
|
|
|
31 |
examples=examples).launch(debug=True)
|
|
|
26 |
|
27 |
iface = gr.Interface(
|
28 |
fn=infer,
|
29 |
+
title="Monocular Depth Estimation",
|
30 |
+
description = "Unet architecture with Densenet201 backbone for estimating the depth of image 📏",
|
31 |
inputs=[gr.inputs.Image(label="image", type="numpy", shape=(640, 480))],
|
32 |
outputs="image",
|
33 |
+
article = "Author: <a href=\"https://huggingface.co/vumichien\">Vu Minh Chien</a>.",
|
34 |
examples=examples).launch(debug=True)
|