In config/__base__/dataset 's ConfigFiles. there's a code img_norm_cfg = dict( mean=[123.675, 116.28, 103.53], std=[58.395, 57.12, 57.375], to_rgb=True) How do we get these numbers,Why aren't they the same with ImageNet's norm_cfg? Image...
I was trying to train my detector on the PASCAL VOC dataset. I noticed that the image normalization parameter - std values in ssd512_voc.py and ssd300_voc.py img_norm_cfg = dict(mean=[123.675, 116.28, 103.53], std=[1, 1, 1], to_rgb=True) are different from those in faster_rcn...