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
According to https://pjreddie.com/darknet/yolo/ website accuracy on pre-trained weights using Coco dataset should be 0.331 mAP:
Model | Train | Test | mAP | FLOPS | FPS | Cfg | Weights
YOLOv3-tiny | COCO trainval | test-dev | 33.1 | 5.56 Bn | 220 | cfg | weights
However when I evaluate it on Coco 2017 with 2000 images I get: 0.161 mAP.
Update: it seems that pre-trained weights were generate with a different mask than the mask in repo.
After changing the mask from:
yolo_tiny_anchor_masks = np.array([[3, 4, 5], [0, 1, 2]])
to:
yolo_tiny_anchor_masks = np.array([[3, 4, 5], [1, 2, 3]])
I get a better accuracy for the baseline: 0.252.
But still the accuracy is lower than expected 0.331 mAP.
What is the baseline accuracy you got for the tiny model?
Do you have any suggestion what needs to be changed in order to get it ?
The text was updated successfully, but these errors were encountered:
According to https://pjreddie.com/darknet/yolo/ website accuracy on pre-trained weights using Coco dataset should be 0.331 mAP:
Model | Train | Test | mAP | FLOPS | FPS | Cfg | Weights
YOLOv3-tiny | COCO trainval | test-dev | 33.1 | 5.56 Bn | 220 | cfg | weights
However when I evaluate it on Coco 2017 with 2000 images I get: 0.161 mAP.
Update: it seems that pre-trained weights were generate with a different mask than the mask in repo.
After changing the mask from:
yolo_tiny_anchor_masks = np.array([[3, 4, 5], [0, 1, 2]])
to:
yolo_tiny_anchor_masks = np.array([[3, 4, 5], [1, 2, 3]])
I get a better accuracy for the baseline: 0.252.
But still the accuracy is lower than expected 0.331 mAP.
What is the baseline accuracy you got for the tiny model?
Do you have any suggestion what needs to be changed in order to get it ?
The text was updated successfully, but these errors were encountered: