Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
keivan
/
Is_he_fat
like
3
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
04897bc
Is_he_fat
/
app.py
keivan
Nice Job!
04897bc
over 1 year ago
raw
Copy download link
history
blame
157 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Good job "
+ name +
"!! :))"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()