zylo117 / Yet-Another-EfficientDet-Pytorch

The pytorch re-implement of the official efficientdet with SOTA performance in real time and pretrained weights.
GNU Lesser General Public License v3.0
5.21k stars 1.27k forks source link

Exact Recipe for Training on Coco from scratch #217

Open subhankar-ghosh opened 4 years ago

subhankar-ghosh commented 4 years ago

Can anyone please provide the exact settings (hyperparameters, schedulers, optimizer etc) for achieving the SOTA mAP with any of the architectures (D0, D1 etc any of these). With D0 90k training steps Global batch size 16 Number of GPUs 8

I am getting loss: 0.315 mAP = 2.716 small mAP = 0.8 med mAP = 2.59 large mAP = 4.45

factplay1 commented 4 years ago

So I concluded that the code, "as is", does not reproduce COCO training from scratch (efficientdet-0).

Here is what I tried:

I concluded that for custom datasets it works, but not for COCO training from scratch for research purposes.

claire-s11 commented 4 years ago

Hi @subhankar-ghosh , by mAP = 2.716, do you mean iou= 0.5:0.95, map = 0.2716? Thank you!