Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
tpatel53
/
BlurryFace
like
1
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
522126b
BlurryFace
/
app.py
tpatel53
Update app.py
b4d080c
verified
9 months ago
raw
Copy download link
history
blame
Safe
146 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello"
+ name +
"!!"
demo = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
demo.launch()