in yolo_loss function
when calculateno_object_weights = (no_object_scale * (1 - object_detections) *(1 - detectors_mask))
should no_object_weights = (no_object_scale * (object_detections) *(1 - detectors_mask)) since no_object_weights is only activated when the iou between predicted boxes and ground truth is larger than 0.6 and detectors_mask=0.
in yolo_loss function when calculate
no_object_weights = (no_object_scale * (1 - object_detections) *(1 - detectors_mask))
shouldno_object_weights = (no_object_scale * (object_detections) *(1 - detectors_mask))
since no_object_weights is only activated when the iou between predicted boxes and ground truth is larger than 0.6 anddetectors_mask=0
.