Skip to content

Commit

Permalink
bug fix for resnext (#780)
Browse files Browse the repository at this point in the history
  • Loading branch information
hellock authored Jun 11, 2019
1 parent d076d5c commit ee82d58
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions mmdet/models/backbones/resnext.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,8 +121,8 @@ def make_res_layer(block,
layers = []
layers.append(
block(
inplanes,
planes,
inplanes=inplanes,
planes=planes,
stride=stride,
dilation=dilation,
downsample=downsample,
Expand All @@ -138,8 +138,8 @@ def make_res_layer(block,
for i in range(1, blocks):
layers.append(
block(
inplanes,
planes,
inplanes=inplanes,
planes=planes,
stride=1,
dilation=dilation,
groups=groups,
Expand Down

0 comments on commit ee82d58

Please sign in to comment.