Skip to content
Snippets Groups Projects
Unverified Commit ee82d58d authored by Kai Chen's avatar Kai Chen Committed by GitHub
Browse files

bug fix for resnext (#780)

parent d076d5c7
No related branches found
No related tags found
No related merge requests found
......@@ -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,
......@@ -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,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment