Ubuntu
commited on
Commit
·
b1cbe5f
1
Parent(s):
a785cd5
removed cased images
Browse files
app.py
CHANGED
@@ -16,6 +16,5 @@ def detect_hotspots(image):
|
|
16 |
|
17 |
demo = gr.Interface(fn=detect_hotspots, inputs=gr.Image(type='pil'), outputs="image", title="YOLO Object Detection",
|
18 |
examples=[['Test Case 1', 'images/test_image_1.jpg'], ['Test Case 2', 'images/test_image_2.jpg'],
|
19 |
-
['Test Case 3', 'images/test_image_3.jpg'], ['Test Case 4', 'images/test_image_4.jpg']]
|
20 |
-
cache_examples= False,)
|
21 |
demo.launch()
|
|
|
16 |
|
17 |
demo = gr.Interface(fn=detect_hotspots, inputs=gr.Image(type='pil'), outputs="image", title="YOLO Object Detection",
|
18 |
examples=[['Test Case 1', 'images/test_image_1.jpg'], ['Test Case 2', 'images/test_image_2.jpg'],
|
19 |
+
['Test Case 3', 'images/test_image_3.jpg'], ['Test Case 4', 'images/test_image_4.jpg']])
|
|
|
20 |
demo.launch()
|