Convolução Agrupada
Convolução Agrupada é uma variação da convolução padrão operação de convolução used in redes neurais, particularly in redes neurais convolucionais (CNNs). In traditional convolution, each filter processes all input channels simultaneously. However, in Grouped Convolution, the input channels are divided into smaller groups, and each group is convolved with its own set of filters. This approach allows for more efficient computation and can reduce the number of parameters no modelo.
The main advantage of Grouped Convolution is its ability to decrease the computational load and memory usage without significantly impacting the performance of the model. By processing each group independently, it allows for more parallelism, which can be particularly beneficial on hardware optimized for processamento paralelo, like GPUs.
Grouped Convolution was notably popularized by the ResNeXt architecture, which introduced the concept of cardinality, referring to the number of groups in the convolution. This architecture demonstrated that increasing the number of groups can lead to better performance in classificação de imagens tarefas, mantendo um número gerenciável de parâmetros.
In practical terms, using Grouped Convolution can lead to faster training times and lower memory consumption, making it a valuable technique for designing efficient aprendizado profundo modelos, especialmente em ambientes com recursos limitados.