Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
coderdee
/
depth-analysis
like
0
Runtime error
App
Files
Files
Community
ecd8644
depth-analysis
/
app.py
coderdee
Add application file
ecd8644
about 1 year ago
raw
Copy download link
history
blame
Safe
152 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()