Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
baxin
/
gh_action
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
gh_action
/
app.py
baxin
Synced repo using 'sync_with_huggingface' Github Action
d3d2e4f
verified
over 2 years ago
raw
Copy download link
history
blame
contribute
delete
Safe
150 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()