Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
seitoku/facefusion
NSOUP
/
facefusion
like
0
No application file
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
11df65e
facefusion
/
app.py
NSOUP
Create app.py
11df65e
verified
about 2 months 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()