Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
acc3d
/
basic_model
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
0ed8de2
basic_model
/
app.py
acc3d
Initial config
0ed8de2
over 1 year ago
raw
Copy download link
history
blame
Safe
147 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
demo = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
demo.launch()