mxnet-ssd icon indicating copy to clipboard operation
mxnet-ssd copied to clipboard

confusion about MultiBoxTarget

Open xinghedyc opened this issue 9 years ago • 3 comments

Hi , I have a question about MultiBoxTarget layer. Why ssd uses MultiBoxTarget layer to do things like assigning positive and negative samples? I think these processings could be done when making a dataset, because all the default boxes are fixed, so I might just match these default boxes to image's ground truth bounding box. This way would save a lot of time during training. Is there anything wrong with this idea?

xinghedyc avatar Mar 15 '17 08:03 xinghedyc

refer to the paper about data augmentation.

nopattern avatar Mar 15 '17 09:03 nopattern

Ground-truths changing all the time after augmentation. So it's better to put that into layers.

zhreshold avatar Mar 15 '17 14:03 zhreshold

@nopattern @zhreshold Thank you very much! I get it.

xinghedyc avatar Mar 15 '17 15:03 xinghedyc