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