We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 771efa2 commit 4fbd38dCopy full SHA for 4fbd38d
Burst/models.py
@@ -197,18 +197,18 @@ def forward(self, x):
197
RB_outs.append(outR)
198
outR = torch.cat(RB_outs, 1)
199
outR = self.GFF_R(outR)
200
- outR += out
+
201
AB_outs = []
202
for i in range(self.A):
203
outA = self.AB[i](out)
204
AB_outs.append(outA)
205
outA = torch.cat(AB_outs, 1)
206
outA = self.GFF_A(outA)
207
- outA += out
208
# outR *= self.softmax(outA)
209
out = torch.cat([outR, outA], 1)
210
out = self.relu2(self.conv_f(self.res2(out)))
211
- out *= 0.2
212
out += x
213
214
return out
0 commit comments