Skip to content

Commit

Permalink
fix #862
Browse files Browse the repository at this point in the history
  • Loading branch information
ppwwyyxx committed Aug 14, 2018
1 parent 92b4d3b commit 17955e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/ImageNetModels/shufflenet.py
Expand Up @@ -86,7 +86,7 @@ def shufflenet_unit_v2(l, out_channel, stride):
shortcut, l = tf.split(l, 2, axis=1)
else:
shortcut, l = l, l
shortcut_channel = shortcut.shape[1]
shortcut_channel = int(shortcut.shape[1])

l = Conv2D('conv1', l, out_channel // 2, 1, activation=BNReLU)
l = DepthConv('dconv', l, out_channel // 2, 3, stride=stride)
Expand Down

0 comments on commit 17955e8

Please sign in to comment.