What All These Parameters Means In Yolov4 Model
Solution 1:
Here's what the parameters mean.
For your given example:
(next mAP calculation at1300 iterations) Last accuracy mAP@0.5=63.16%, best =68.55%1250: 13.904115, 23.006844 avg loss, 0.001000 rate, 4.093653 seconds, 40000 images, 10.456502 hours left Resizing, random_coef =1.40
1250
--> iterationLast accuracy mAP@0.5
--> Last mean average precision (mAP) at 50% IoU threshold. mAP is calculated every 100th iteration. So, in the example, it's the mAP from iteration = 1200best
--> highest mAP so far13.904115
--> total loss23.006844 avg loss
--> average loss, this is the thing you should care about for being low in training0.001000 rate
--> learning rate4.093653 seconds
--> total time spent to process the batch40000 images
--> total amount of images used during training so far (iteration*batch = 1250 * 32)10.456502 hours left
--> estimated time remaining for finishing up to themax_batches
in your config fileResizing, random_coef = 1.40
--> Confirming that your dataset is being randomly resized every 10 iterations from 1/1.4 to 1.4 (in this iteration, it's 1.40)
References: https://github.com/AlexeyAB/darknet/blob/master/src/detector.chttps://github.com/AlexeyAB/darknet/wiki/CFG-Parameters-in-the-different-layers
Post a Comment for "What All These Parameters Means In Yolov4 Model"