Aman Dalmia

Results 2 comments of Aman Dalmia

Just solved it. The error is in `models/SSD.py` The inplace operation happens in the class `L2Norm`. Replace that with this (courtesy [amdegroot/ssd.pytorch](https://www.github.com/amdegroot/ssd.pytorch)): ```python class L2Norm(nn.Module): def __init__(self,n_channels, scale=20): super(L2Norm,self).__init__() self.weight...

https://github.com/luuuyi/RefineDet.PyTorch