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