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...
bd60378
gradio-example-test
/
app.py
tonyassi
Create app.py
bd60378
verified
about 1 month ago
raw
Copy download link
history
blame
Safe
149 Bytes
import
gradio
as
gr
def
greet
(
img1, img2
):
return
img2
demo = gr.Interface(fn=greet, inputs=[
"image"
,
"image"
]
", outputs="
image
")
demo.launch()