Ubuntu
commited on
Commit
·
21181e0
1
Parent(s):
b1cbe5f
removed test cases text
Browse files
app.py
CHANGED
@@ -15,6 +15,6 @@ def detect_hotspots(image):
|
|
15 |
|
16 |
|
17 |
demo = gr.Interface(fn=detect_hotspots, inputs=gr.Image(type='pil'), outputs="image", title="YOLO Object Detection",
|
18 |
-
examples=[['
|
19 |
-
['
|
20 |
demo.launch()
|
|
|
15 |
|
16 |
|
17 |
demo = gr.Interface(fn=detect_hotspots, inputs=gr.Image(type='pil'), outputs="image", title="YOLO Object Detection",
|
18 |
+
examples=[['images/test_image_1.jpg'], ['images/test_image_2.jpg'],
|
19 |
+
['images/test_image_3.jpg'], ['images/test_image_4.jpg']])
|
20 |
demo.launch()
|