Spaces:
Build error
Build 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 = "Keras Implementation of 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>. The ideal based on the keras example from <a href=\"https://keras.io/examples/vision/depth_estimation/\">Victor Basu</a>",
|
34 |
examples=examples).launch(debug=True)
|