Spaces:
Sleeping
Sleeping
Commit
·
b688ee0
1
Parent(s):
f2d9d9a
Application file
Browse files
app.py
CHANGED
@@ -100,12 +100,12 @@ demo = gr.Interface(
|
|
100 |
outputs=gr.AnnotatedImage(),
|
101 |
title="Zero-Shot Object Detection SV3",
|
102 |
description="This interface demonstrates object detection using zero-shot object detection and SAM for image segmentation.",
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
|
108 |
-
|
109 |
)
|
110 |
|
111 |
demo.launch()
|
|
|
100 |
outputs=gr.AnnotatedImage(),
|
101 |
title="Zero-Shot Object Detection SV3",
|
102 |
description="This interface demonstrates object detection using zero-shot object detection and SAM for image segmentation.",
|
103 |
+
examples=[
|
104 |
+
["images/purple cell.png", "purple cells", 0.05],
|
105 |
+
["images/dark_cell.png", "gray cells", 0.1],
|
106 |
+
["images/animals.png", "Rabbit,Squirrel,Parrot,Hedgehog,Turtle,Ladybug,Chick,Frog,Butterfly,Snail,Mouse", 0.35],
|
107 |
|
108 |
+
],
|
109 |
)
|
110 |
|
111 |
demo.launch()
|