Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
CVPR
/
WALT
like
3
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
55717bd
WALT
/
app.py
3v324v23
image
55717bd
about 3 years ago
raw
Copy download link
history
blame
Safe
137 Bytes
import
gradio
as
gr
def
greet
(
image
):
return
image
iface = gr.Interface(fn=greet, inputs=
"image"
, outputs=
"image"
)
iface.launch()