ijkguo / mx-rcnn

Parallel Faster R-CNN implementation with MXNet.
Other
669 stars 292 forks source link

lr policy for COCO #65

Closed DengpanFu closed 7 years ago

DengpanFu commented 7 years ago

I noticed that you have reported a mAP 26.1 on coco_val with Resnet-101 + coco_train. There are more than 80K images in coco_train, after flipping we will have more than 160K images. So, i am curious about your lr policy, did you keep the same lr policy as pascal_voc(train 10 epoches, and decrease lr at 7th epoch)? if so, that would be more than 1600K iterations for training, while in rbg's py-faster-rcnn, he just train 490K iterations. Could you please give me some advice to reproduce your results, Thanks!

ijkguo commented 7 years ago

Be careful about the iterations in py-faster-rcnn: you have missed some details, while simplicity and clarity are the aim of this repo.

DengpanFu commented 7 years ago

Thanks for your reply @precedenceguo. I re-checked the config file, for end2end training: e2e_epoch = 10, e2e_lr_step = '7'. If we apply these configs to train resnet with COCO, that will take a very long time with single gpu(compared to py-faster-rcnn's 3 epoches training). I didn't find any scripts implied how to do training with COCO, could you please share your script used for COCO, Thanks!

ijkguo commented 7 years ago

I will just put this in my list, but be sure to checkout other implementations emphasized on performance comparison.