fffiloni commited on
Commit
952baeb
1 Parent(s): 3d18183

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -210,7 +210,10 @@ with gr.Blocks(css=css) as block:
210
  flow_file_out = gr.File(label="flow file")
211
 
212
 
213
- examples=[['basket1.jpg','basket2.jpg']]
 
 
 
214
  ex = gr.Examples(examples=examples, fn=infer, inputs=[frame1_inp, frame2_inp], outputs=[flow_img_out, flow_file_out], cache_examples=True, run_on_click=True)
215
  #ex.dataset.headers = [""]
216
 
 
210
  flow_file_out = gr.File(label="flow file")
211
 
212
 
213
+ examples=[
214
+ ['basket1.jpg','basket2.jpg'],
215
+ ['frame1.jpg', 'frame2.jpg']
216
+ ]
217
  ex = gr.Examples(examples=examples, fn=infer, inputs=[frame1_inp, frame2_inp], outputs=[flow_img_out, flow_file_out], cache_examples=True, run_on_click=True)
218
  #ex.dataset.headers = [""]
219