yqyao / SSD_Pytorch

support different SSDs and different scale test, support refineDet.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Input normalization

oyxhust opened this issue · comments

Hello, thanks for your great work! I have a question about the input normalization.

Usually, the input will do the "ToTenser" function which will make the input range to [0, 1]. In your implement, I find that the input will reduce the mean then it will range to about [-127, 127]. Is that a trick to train SSD without to normalize to [0, 1].

commented

No, I just do it same with original caffe implementation @oyxhust . In caffe, we don't need to normalized input to [0, 1].