Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
tonyassi
/
gradio-example-test
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
149a86b
gradio-example-test
/
app.py
tonyassi
Update app.py
149a86b
verified
about 1 month ago
raw
Copy download link
history
blame
Safe
257 Bytes
import
gradio
as
gr
def
greet
(
img1, img2
):
return
img2
demo = gr.Interface(fn=greet,
inputs=[
"image"
,
"image"
]
",
outputs="
image
",
exmaples=[['27-24522.jpg', '28-24766.jpg']])
demo.launch()