sea45 commited on
Commit
d4d3c51
·
verified ·
1 Parent(s): 318bdb2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -13,7 +13,7 @@ def greet(name):
13
 
14
  # inference
15
  depth = pipe(image)["depth"]
16
- return "depth: " + depth
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()