Skip to content

Commit

Permalink
Fix missing application of conv2 in babyunet
Browse files Browse the repository at this point in the history
  • Loading branch information
batson committed Dec 17, 2019
1 parent 2e351cb commit b306ca7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion models/babyunet.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def forward(self, x):
x = self.pool1(c1)
c2 = self.conv2(x)
x = self.pool2(c2)
self.conv3(x)
x = self.conv3(x)

x = self.up1(x)
x = torch.cat([x, c2], 1)
Expand Down

0 comments on commit b306ca7

Please sign in to comment.