Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
course-demos
/
hello-world
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
a1530b0
hello-world
/
app.py
abidlabs
HF Staff
Upload app.py
a1530b0
over 3 years ago
raw
Copy download link
history
blame
Safe
169 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name
gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
, css=
".footer{display:none !important}"
).launch()