MobileNetv2-SSD
MobileNetv2-SSD copied to clipboard
Logic error
Hi!
On this line of code hw[ pos : pos + numBox , :] = np.multiply(gridSize*scale, np.squeeze(np.dstack([asp1,asp2]),axis=0))[:numBox,:]
, I think gridSize*scale
need to be replaced with IMG_SIZE/gridSize*scale
. The gridSize
is the number of layers, but the width and height of each layer is IMG_SIZE/gridSize
. Am I right?
Thank you!