anonymousatom commited on
Commit
a5ce213
·
verified ·
1 Parent(s): 850c776

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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