Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
jph00
/
testing
like
34
Running
App
Files
Files
Community
2
Fetching metadata from the HF Docker repository...
a9d743c
testing
/
app.py
jph00
Add application file
a9d743c
almost 3 years 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()