Removed case sensitive
Browse files
app.py
CHANGED
@@ -219,7 +219,7 @@ with demo:
|
|
219 |
with gr.Row():
|
220 |
example_images = gr.Dataset(components=[img_input],
|
221 |
samples=[[path.as_posix()]
|
222 |
-
for path in sorted(pathlib.Path('images').rglob('*.JPG'
|
223 |
|
224 |
img_but = gr.Button('Detect', interactive=False)
|
225 |
|
|
|
219 |
with gr.Row():
|
220 |
example_images = gr.Dataset(components=[img_input],
|
221 |
samples=[[path.as_posix()]
|
222 |
+
for path in sorted(pathlib.Path('images').rglob('*.JPG'))]) # Can't get case_sensitive to work
|
223 |
|
224 |
img_but = gr.Button('Detect', interactive=False)
|
225 |
|