You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
in yolo_loss function
when calculate
no_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 anddetectors_mask=0
.The text was updated successfully, but these errors were encountered: