MLLGNESep 5, 2017

Stochastic Gradient Descent: Going As Fast As Possible But Not Faster

arXiv:1709.01427v114 citations
Originality Incremental advance
AI Analysis

This work addresses the challenge of unstable training in deep learning, offering a practical solution for researchers and practitioners, though it is incremental as it builds on existing SGD optimization techniques.

The paper tackles the problem of catastrophic learning episodes in stochastic gradient descent (SGD) for deep neural networks by introducing SALeRA, a novel learning rate control method that uses statistical tests to adjust the rate dynamically, resulting in favorable performance compared to state-of-the-art methods on standard benchmarks.

When applied to training deep neural networks, stochastic gradient descent (SGD) often incurs steady progression phases, interrupted by catastrophic episodes in which loss and gradient norm explode. A possible mitigation of such events is to slow down the learning process. This paper presents a novel approach to control the SGD learning rate, that uses two statistical tests. The first one, aimed at fast learning, compares the momentum of the normalized gradient vectors to that of random unit vectors and accordingly gracefully increases or decreases the learning rate. The second one is a change point detection test, aimed at the detection of catastrophic learning episodes; upon its triggering the learning rate is instantly halved. Both abilities of speeding up and slowing down the learning rate allows the proposed approach, called SALeRA, to learn as fast as possible but not faster. Experiments on standard benchmarks show that SALeRA performs well in practice, and compares favorably to the state of the art.

Foundations

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

Your Notes