Introduction

ResNeXt improve the performance of ResNet by introducing the concept of “group convolution”


Group Convolution

Method

Similar to GoogLeNet, ResNeXt splits each stage into multiple parallel branches that are concatenated after processing. We introduce cardinality , a hyperparameter that determines the number of groups. The input is divided into groups of channels each. Each branch processes its group independently and outputs channels. Concatenating all branch outputs reconstructs the full dimension.

small

We introduce another parameter small in ResNeXt, this parameter is chosen to make the grouped convolution has the same FLOPs like that of ResNet

It is the number of channel in the middle layer of bottleneck block, we can get its value by solving