Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
OzzyGT/diffusers-image-fill
fffiloni
/
diffusers-image-outpaint
like
1.64k
Running
on
Zero
App
Files
Files
Community
31
Fetching metadata from the HF Docker repository...
edb0494
diffusers-image-outpaint
/
app.py
OzzyGT
HF staff
initial commit
edb0494
verified
5 months ago
raw
Copy download link
history
blame
Safe
148 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
demo = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
demo.launch()