ShuffleNet
ShuffleNet copied to clipboard
I didn't find pointwise group conv in your deploy.prototxt
There only exist channel shuffle setting and depthwise conv setting for 33 convolution, why didn't have group convolution for 11 kernel ?
@wujiyang You can find 1x1 group convolution in the deploy file, for example: layer { name: "resx1_conv3" type: "Convolution" bottom: "resx1_conv2" top: "resx1_conv3" convolution_param { num_output: 216 kernel_size: 1 stride: 1 pad: 0 group: 3 bias_term: false weight_filler { type: "msra" } } }