MixMatch-pytorch icon indicating copy to clipboard operation
MixMatch-pytorch copied to clipboard

The bias term of convolution in WideResNet

Open blankWorld opened this issue 5 years ago • 1 comments

In official code, bias term is enabled in Conv2D. but your code without using bias in Conv2D. The number of parameters of WideResNet in offical code:1469642 The number of parameters of WideResNet in your code:1467610 I have tried enabling the bias in Conv2D but this leaded to a very bad result.

blankWorld avatar Jun 15 '19 04:06 blankWorld

Did you try to initialize the bias in Conv2D to 0?

YU1ut avatar Aug 02 '19 13:08 YU1ut