LGCVMLOct 15, 2019

Training CNNs faster with Dynamic Input and Kernel Downsampling

arXiv:1910.06548v1
Originality Incremental advance
AI Analysis

This addresses the high computational cost of CNN training for researchers and practitioners, though it is an incremental improvement over existing methods.

The paper tackles the problem of reducing training time in convolutional neural networks (CNNs) by introducing a method that interleaves mini-batches with downsampled inputs and pooled filters to cut computational costs, achieving up to 23% faster training with minimal accuracy loss.

We reduce training time in convolutional networks (CNNs) with a method that, for some of the mini-batches: a) scales down the resolution of input images via downsampling, and b) reduces the forward pass operations via pooling on the convolution filters. Training is performed in an interleaved fashion; some batches undergo the regular forward and backpropagation passes with original network parameters, whereas others undergo a forward pass with pooled filters and downsampled inputs. Since pooling is differentiable, the gradients of the pooled filters propagate to the original network parameters for a standard parameter update. The latter phase requires fewer floating point operations and less storage due to the reduced spatial dimensions in feature maps and filters. The key idea is that this phase leads to smaller and approximate updates and thus slower learning, but at significantly reduced cost, followed by passes that use the original network parameters as a refinement stage. Deciding how often and for which batches the downsmapling occurs can be done either stochastically or deterministically, and can be defined as a training hyperparameter itself. Experiments on residual architectures show that we can achieve up to 23% reduction in training time with minimal loss in validation accuracy.

Foundations

The foundational work for this paper's niche, ranked by how specifically the neighbourhood builds on it — not by global fame.

Your Notes