xmrt commited on
Commit
3eb1cdc
·
1 Parent(s): ae6d882

new example loc

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -84,6 +84,6 @@ with gr.Blocks() as demo:
84
  gr.Markdown("## Image Examples")
85
  examples= ["IMGP0178.jpg"]
86
 
87
- gr.Examples(['IMGP0178.jpg', 'coffee.jpg'], inputs_file, im_output, query_image)
88
 
89
  demo.launch()
 
84
  gr.Markdown("## Image Examples")
85
  examples= ["IMGP0178.jpg"]
86
 
87
+ gr.Examples([[os.path.join(os.getcwd(), "IMGP0178.jpg")], [os.path.join(os.getcwd(), "coffee.jpg")]], [inputs_file], [im_output], query_image)
88
 
89
  demo.launch()