Skip to content

Commit

Permalink
out0 to out in backbone/resnet (facebookresearch#858)
Browse files Browse the repository at this point in the history
  • Loading branch information
lsrock1 authored and fmassa committed Jun 4, 2019
1 parent 2c025d9 commit b5b0a0a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions maskrcnn_benchmark/modeling/backbone/resnet.py
Original file line number Diff line number Diff line change
Expand Up @@ -332,8 +332,8 @@ def forward(self, x):
out = self.bn2(out)
out = F.relu_(out)

out0 = self.conv3(out)
out = self.bn3(out0)
out = self.conv3(out)
out = self.bn3(out)

if self.downsample is not None:
identity = self.downsample(x)
Expand Down

0 comments on commit b5b0a0a

Please sign in to comment.