CSP-pedestrian-detection-in-pytorch
CSP-pedestrian-detection-in-pytorch copied to clipboard
Unofficially Pytorch implementation of High-level Semantic Feature Detection: A New Perspective for Pedestrian Detection
In the network.py: ``` nn.init.constant_(self.pos_conv.bias, 0) nn.init.constant_(self.reg_conv.bias, -math.log(0.99/0.01)) ``` This causes a large loss at the beginning. These two lines should be amended as: ``` nn.init.constant_(self.pos_conv.bias, -math.log(0.99/0.01)) nn.init.constant_(self.reg_conv.bias, 0) ```
I cant download the models,can someone download it?
Hi, I saw you have managed to get MR upto 10.2 on ciypersons ? shall we wait for a new repo ? or can we use this repo ?