Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
lpiccinelli
/
UniDepth
like
1
No application file
App
Files
Files
Community
2
Fetching metadata from the HF Docker repository...
d86f7f1
UniDepth
/
app.py
badri999
Create app.py
d86f7f1
verified
27 days ago
raw
Copy download link
history
blame
Safe
147 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
demo = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
demo.launch()