Create configurations.md
Browse files
Content/configurations.md
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
model.conf = 0.25 # NMS confidence threshold
|
| 2 |
+
iou = 0.45 # NMS IoU threshold
|
| 3 |
+
agnostic = False # NMS class-agnostic
|
| 4 |
+
multi_label = False # NMS multiple labels per box
|
| 5 |
+
classes = None # (optional list) filter by class, i.e. = [0, 15, 16] for COCO persons, cats and dogs
|
| 6 |
+
max_det = 1000 # maximum number of detections per image
|
| 7 |
+
amp = False # Automatic Mixed Precision (AMP) inference
|