omarhkh commited on
Commit
8749e62
·
1 Parent(s): 2fb6b0f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -3
app.py CHANGED
@@ -118,9 +118,7 @@ with demo:
118
  img_output_from_upload= gr.Image(shape=(650,650))
119
 
120
  with gr.Row():
121
- example_images = gr.Dataset(components=[img_input],
122
- samples=[[path.as_posix()]
123
- for path in sorted(pathlib.Path('images').rglob('*.JPG'))])
124
 
125
  img_but = gr.Button('Detect')
126
 
 
118
  img_output_from_upload= gr.Image(shape=(650,650))
119
 
120
  with gr.Row():
121
+ example_images = gr.Dataset(components=[img_input], samples=[[path.as_posix()] for path in sorted(pathlib.Path('images').rglob('*.JPG'))])
 
 
122
 
123
  img_but = gr.Button('Detect')
124