I am attempting to explain the purposes of different parameters in the yolov3.cfg file, however, I can't find any explanation for ignore_thresh and truth_thresh.
My current (limited) understanding is that they are either related to non-max suppression where they act as thresholds for combining bounding boxes, or upper and lower bounds for confidence in predictions.
Couldn't find anyone actually explaining the parameters online, only people who have copy-pasted parts of the config file. I have looked through https://blog.paperspace.com/tag/series-yolo/ where YOLOv3 is implemented in PyTorch, however, they smoothly skip using and explaining these two parameters.
The relevant parts of yolov3.cfg is shown below.
[yolo]
mask = 3,4,5
anchors = 10,13, 16,30, 33,23, 30,61, 62,45, ...
classes=80
num=9
jitter=.3
ignore_thresh = .7
truth_thresh = 1
random=1
I don't think it matters, but I am using AlexeyAB's darknet repository as framework.