Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
banyapon
/
InpaintingCloth
like
0
License:
mit
Model card
Files
Files and versions
Community
9c461c2
InpaintingCloth
/
app.py
banyapon
Add application file
9c461c2
7 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()