the groups default should be None

cblas_new
xzl 8 years ago
parent ccd46d1bf6
commit 030a3db20f

@ -2269,7 +2269,7 @@ def img_depthwise_conv_layer(input,
name=None,
num_channels=None,
act=None,
groups=1,
groups=None,
stride=1,
padding=0,
bias_attr=None,
@ -2286,6 +2286,8 @@ def img_depthwise_conv_layer(input,
assert input.num_filters is not None
num_channels = input.num_filters
groups = num_channels
if filter_size_y is None:
if isinstance(filter_size, collections.Sequence):
assert len(filter_size) == 2

Loading…
Cancel
Save