delete convolution bias before BN
The convolution bias before BN is redundan Former-commit-id: 514f18e1a961fee4bf98fa6f50084a166e3bff4b
This commit is contained in:
parent
473a03ce17
commit
a953415a0d
|
@ -13,10 +13,10 @@ class DoubleConv(nn.Module):
|
||||||
if not mid_channels:
|
if not mid_channels:
|
||||||
mid_channels = out_channels
|
mid_channels = out_channels
|
||||||
self.double_conv = nn.Sequential(
|
self.double_conv = nn.Sequential(
|
||||||
nn.Conv2d(in_channels, mid_channels, kernel_size=3, padding=1),
|
nn.Conv2d(in_channels, mid_channels, kernel_size=3, padding=1, bias=False),
|
||||||
nn.BatchNorm2d(mid_channels),
|
nn.BatchNorm2d(mid_channels),
|
||||||
nn.ReLU(inplace=True),
|
nn.ReLU(inplace=True),
|
||||||
nn.Conv2d(mid_channels, out_channels, kernel_size=3, padding=1),
|
nn.Conv2d(mid_channels, out_channels, kernel_size=3, padding=1, bias=False),
|
||||||
nn.BatchNorm2d(out_channels),
|
nn.BatchNorm2d(out_channels),
|
||||||
nn.ReLU(inplace=True)
|
nn.ReLU(inplace=True)
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue