Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -7,7 +7,7 @@ st.title("Gun/Arms Detection")
|
|
7 |
model = YOLO('yolov8n_best.pt')
|
8 |
|
9 |
def detect_objects(image):
|
10 |
-
result = model(image)
|
11 |
return result
|
12 |
|
13 |
|
|
|
7 |
model = YOLO('yolov8n_best.pt')
|
8 |
|
9 |
def detect_objects(image):
|
10 |
+
result = model(image, conf = 0.55)
|
11 |
return result
|
12 |
|
13 |
|