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