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...
8690f9a
image-identity-slow
/
app.py
abidlabs
HF Staff
Update app.py
8690f9a
over 2 years ago
raw
Copy download link
history
blame
Safe
173 Bytes
import
gradio
as
gr
import
time
def
identity
(
image
):
time.sleep(
10
)
return
image
iface = gr.Interface(fn=identity, inputs=
"image"
, outputs=
"image"
)
iface.launch()