Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
deelight-del
/
minima
like
1
Sleeping
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
03884cf
minima
/
app.py
Akingbeni
Update
03884cf
almost 3 years ago
raw
Copy download link
history
blame
175 Bytes
#from fastai.vision.all import *
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()