Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
tonyassi
/
MGM-Film-Diffusion
like
23
Running
App
Files
Files
Fetching metadata from the HF Docker repository...
9a7103d
MGM-Film-Diffusion
/
app.py
tonyassi
Update app.py
9a7103d
over 1 year ago
raw
Copy download link
history
blame
Safe
150 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"image"
)
iface.launch()