tonyassi commited on
Commit
149a86b
·
verified ·
1 Parent(s): 9579746

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -3,5 +3,8 @@ import gradio as gr
3
  def greet(img1, img2):
4
  return img2
5
 
6
- demo = gr.Interface(fn=greet, inputs=["image", "image"]", outputs="image")
 
 
 
7
  demo.launch()
 
3
  def greet(img1, img2):
4
  return img2
5
 
6
+ demo = gr.Interface(fn=greet,
7
+ inputs=["image", "image"]",
8
+ outputs="image",
9
+ exmaples=[['27-24522.jpg', '28-24766.jpg']])
10
  demo.launch()