Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
course-demos
/
hello-world-custom
like
0
Configuration error
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
480375b
hello-world-custom
/
app.py
abidlabs
HF Staff
Upload app.py
480375b
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()