Skip to content

Commit 53f1dac

Browse files
authored
Update architecture.py
1 parent 7c51070 commit 53f1dac

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

model/architecture.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -99,9 +99,9 @@ class IMDN_RTE(nn.Module):
9999
def __init__(self, upscale=2, in_nc=3, nf=20, out_nc=3):
100100
super(IMDN_RTE, self).__init__()
101101
self.upscale = upscale
102-
self.fea_conv = nn.Sequential(B.conv_layer(in_nc, nf, 3, bias=True),
102+
self.fea_conv = nn.Sequential(B.conv_layer(in_nc, nf, 3),
103103
nn.ReLU(inplace=True),
104-
B.conv_layer(nf, nf, 3, stride=2))
104+
B.conv_layer(nf, nf, 3, stride=2, bias=False))
105105

106106
self.block1 = IMDModule_Large(nf)
107107
self.block2 = IMDModule_Large(nf)
@@ -110,9 +110,9 @@ def __init__(self, upscale=2, in_nc=3, nf=20, out_nc=3):
110110
self.block5 = IMDModule_Large(nf)
111111
self.block6 = IMDModule_Large(nf)
112112

113-
self.LR_conv = B.conv_layer(nf, nf, 1)
113+
self.LR_conv = B.conv_layer(nf, nf, 1, bias=False)
114114

115-
self.upsampler = B.pixelshuffle_block(nf, out_nc, upscale_factor=upscale**2, bias=True)
115+
self.upsampler = B.pixelshuffle_block(nf, out_nc, upscale_factor=upscale**2)
116116

117117
def forward(self, input):
118118

0 commit comments

Comments
 (0)