Update app.py
Browse files
app.py
CHANGED
@@ -13,7 +13,7 @@ def greet(name):
|
|
13 |
|
14 |
# inference
|
15 |
depth = pipe(image)["depth"]
|
16 |
-
return "
|
17 |
|
18 |
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
|
19 |
iface.launch()
|
|
|
13 |
|
14 |
# inference
|
15 |
depth = pipe(image)["depth"]
|
16 |
+
return name+": " + depth
|
17 |
|
18 |
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
|
19 |
iface.launch()
|