Caffe-YOLOv3-Windows icon indicating copy to clipboard operation
Caffe-YOLOv3-Windows copied to clipboard

some different between darknet with your yolov3?

Open zlheos opened this issue 7 years ago • 0 comments

in darknet

  1. obj/no obj loss l.delta[obj_index] = 0 - l.output[obj_index]; // no obj diff if (best_iou > l.ignore_thresh) { l.delta[obj_index] = 0; } if (best_iou > l.truth_thresh) { l.delta[obj_index] = 1 - l.output[obj_index]; //obj diff } why your yolov3 has no ignore_thresh ?
  2. you swap data through logistic_activate

zlheos avatar Oct 11 '18 03:10 zlheos