Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
neopolita
/
bears
like
0
Sleeping
App
Files
Files
Community
f4cd9a8
bears
/
app.py
neopolita
wip
b838192
about 2 years ago
raw
Copy download link
history
blame
Safe
181 Bytes
import
gradio
as
gr
from
fastai.vision.
all
import
*
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()