Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
mkrzyzan
/
stable-diffusion-impainting
like
0
Runtime error
App
Files
Files
Community
5
Fetching metadata from the HF Docker repository...
d58ac58
stable-diffusion-impainting
/
app.py
mkrzyzan
Add application file
d58ac58
over 1 year ago
raw
Copy download link
history
blame
Safe
151 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()