The 'steps' in config.py is [8, 16, 32, 64, 100, 300]. I am just wondering how to derive these numbers? I have read the papers which says 'f_k is the size of kth square feature maps', though I cannot relate it with the numbers you got. Thanks.
I think they are the total stride that branches out for each classifier, say the first 8 corresponds to 300 / 8 = 38 (x 38) feature map. Therefore, my doubt is that should the last two in the list be, 128 and 256?
Got it. Since the final feature map size is 3 x 3 and 1 x 1, the input is 300 x 300; therefore the stride should be 100 (approximate value to replace 128), 300 (approximate value to replace 256). Inspired by @chizhizhen
In fact, I wonder why not just use the 'feature_maps' : [38, 19, 10, 5, 3, 1] defined in config.py?
The step is receptive field?
Most helpful comment
I think they are the total stride that branches out for each classifier, say the first 8 corresponds to 300 / 8 = 38 (x 38) feature map. Therefore, my doubt is that should the last two in the list be, 128 and 256?