Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
Moibe/demo
Moibe
/
video-blend
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
40e85ae
video-blend
/
app.py
Moibe
Update app.py
40e85ae
over 1 year ago
raw
Copy download link
history
blame
Safe
139 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"OK"
iface = gr.Interface(greet, gr.Image(height=
200
, width=
200
),
"image"
)
iface.launch()