paper-with-me

Papers

Preconditioned Stochastic Gradient Descent

2015-12-14 · Xi-Lin Li

Stochastic gradient descent (SGD) still is the workhorse for many practical problems. However, it converges slow, and can be difficult to tune. It is possible to precondition SGD to accelerate its convergence remarkably. But many attempts in this direction either aim at solving specialized problems, or result in significantly more complicated methods than SGD. This paper proposes a new method to estimate a preconditioner such that the amplitudes of perturbations of preconditioned stochastic gradient match that of the perturbations of parameters to be optimized in a way comparable to Newton method for deterministic optimization. Unlike the preconditioners based on secant equation fitting as done in deterministic quasi-Newton methods, which assume positive definite Hessian and approximate its inverse, the new preconditioner works equally well for both convex and non-convex optimizations with exact or noisy gradients. When stochastic gradient is used, it can naturally damp the gradient noise to stabilize SGD. Efficient preconditioner estimation methods are developed, and with reasonable simplifications, they are applicable to large scaled problems. Experimental results demonstrate that equipped with the new preconditioner, without any tuning effort, preconditioned SGD can efficiently solve many challenging problems like the training of a deep neural network or a recurrent neural network requiring extremely long term memories.

📄 PDF Abstract BibTeX arXiv:1512.04202

Code (2)

lixilinx/psgd_torch 공식 구현 pytorch
lixilinx/psgd_tf tf

Tasks

2D Human Pose Estimation

Methods 이 논문이 사용한 방법론

SGD Stochastic Gradient Descent is an iterative optimization technique that uses minibatches of data to form an expectation of the gradient, rather than the full gradient using…

Similar Papers 제목 키워드 기반

Recurrent neural network training with preconditioned stochastic gradient descent

2016-06-14 · Xi-Lin Li

This paper studies the performance of a recently proposed preconditioned stochastic gradient descent (PSGD) algorithm on recurrent neural network (RNN) training. PSGD adaptively estimates a preconditioner to accelerate g…

Handwritten Digit Recognition

Uncertainty Sampling is Preconditioned Stochastic Gradient Descent on Zero-One Loss

2018-12-05 · NeurIPS 2018 12 · Stephen Mussmann, Percy Liang

Uncertainty sampling, a popular active learning algorithm, is used to reduce the amount of data required to learn a classifier, but it has been observed in practice to converge to different parameters depending on the in…

Active Learning

Adaptive Step Sizes for Preconditioned Stochastic Gradient Descent

2023-11-28 · Frederik Köhne, Leonie Kreis, Anton Schiela, Roland Herzog

This paper proposes a novel approach to adaptive step sizes in stochastic gradient descent (SGD) by utilizing quantities that we have identified as numerically traceable -- the Lipschitz constant for gradients and a conc…

image-classificationImage ClassificationStochastic Optimization

A preconditioned accelerated stochastic gradient descent algorithm

2019-05-01 · ICLR 2019 5 · Alexandru Onose, Seyed Iman Mossavat, Henk-Jan H. Smilde

We propose a preconditioned accelerated stochastic gradient method suitable for large scale optimization. We derive sufficient convergence conditions for the minimization of convex functions using a generic class of diag…

Stochastic Optimization

Linear Convergence of Generalized Mirror Descent with Time-Dependent Mirrors

2020-09-18 · Adityanarayanan Radhakrishnan, Mikhail Belkin, Caroline Uhler

The Polyak-Lojasiewicz (PL) inequality is a sufficient condition for establishing linear convergence of gradient descent, even in non-convex settings. While several recent works use a PL-based analysis to establish linea…