kbarnard commited on
Commit
5402ab1
1 Parent(s): 5eda6c8

Set confidence threshold to 0.4

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -8,6 +8,7 @@ model = YOLO(model_path)
8
 
9
  PREDICT_KWARGS = {
10
  "classes": 0,
 
11
  }
12
 
13
 
 
8
 
9
  PREDICT_KWARGS = {
10
  "classes": 0,
11
+ "conf": 0.4,
12
  }
13
 
14