While tweaking are model I found an error in utils/export_yoloV8_seg.py. In line 71, the IOU threshold and confidence threshold are passed to the NMS.apply function in the wrong order. In our case, this causes the network to have very few detections when a high IOU threshold is set.
While tweaking are model I found an error in
utils/export_yoloV8_seg.py
. In line 71, the IOU threshold and confidence threshold are passed to theNMS.apply
function in the wrong order. In our case, this causes the network to have very few detections when a high IOU threshold is set.