Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
menghanxia
/
disco
like
25
Runtime error
App
Files
Files
Community
3
Fetching metadata from the HF Docker repository...
4636eb6
disco
/
app.py
menghanxia
Add application file
4636eb6
almost 3 years ago
raw
Copy download link
history
blame
Safe
155 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()