Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
abidlabs/image-identity
abidlabs
/
image-identity-slow
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
1061e29
image-identity-slow
/
app.py
abidlabs
HF Staff
Duplicate from abidlabs/image-identity
1061e29
over 2 years ago
raw
Copy download link
history
blame
Safe
142 Bytes
import
gradio
as
gr
def
identity
(
image
):
return
image
iface = gr.Interface(fn=identity, inputs=
"image"
, outputs=
"image"
)
iface.launch()