paper-with-me

홈 › Papers

A decreasing scaling transition scheme from Adam to SGD

2021-06-12 · Kun Zeng, Jinlan Liu, Zhixia Jiang, Dongpo Xu

Adaptive gradient algorithm (AdaGrad) and its variants, such as RMSProp, Adam, AMSGrad, etc, have been widely used in deep learning. Although these algorithms are faster in the early phase of training, their generalization performance is often not as good as stochastic gradient descent (SGD). Hence, a trade-off method of transforming Adam to SGD after a certain iteration to gain the merits of both algorithms is theoretically and practically significant. To that end, we propose a decreasing scaling transition scheme to achieve a smooth and stable transition from Adam to SGD, which is called DSTAdam. The convergence of the proposed DSTAdam is also proved in an online convex setting. Finally, the effectiveness of the DSTAdam is verified on the CIFAR-10/100 datasets. Our implementation is available at: https://github.com/kunzeng/DSTAdam.

📄 PDF Abstract BibTeX arXiv:2106.06749

Code (2)

kunzeng/DSTAda 공식 구현 pytorch
kunzeng/DSTAdam 공식 구현 pytorch

Methods 이 논문이 사용한 방법론

AMSGrad AMSGrad is a stochastic optimization method that seeks to fix a convergence issue with Adam based optimizers. AMSGrad uses the…
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…
RMSProp RMSProp is an unpublished adaptive learning rate optimizer proposed by Geoff Hinton. The motivation…
AdaGrad AdaGrad is a stochastic optimization method that adapts the learning rate to the parameters. It performs smaller updates for parameters associated with frequently occurring…
Adam 설명 없음

Similar Papers 제목 키워드 기반

Percolation Dynamics in Optimization : Variance Cascades and Discrete Scale Invariance

2026-09-02 · Sai Niranjan Ramachandran, Suvrit Sra hf

We study the dynamics of Stochastic Gradient Descent (SGD), which is known to steer deep neural networks toward invariant sets that correspond to simpler subnetworks. How this steering unfolds over time remains poorly un…

Batch size invariant Adam

2024-02-29 · Xi Wang, Laurence Aitchison

We propose a batch size invariant version of Adam, for use in large-scale, distributed settings, in which the mini-batch is divided into micro-batches which are distributed among worker nodes. For the v term, standard Ad…

FlowAdam: Implicit Regularization via Geometry-Aware Soft Momentum Injection

2026-04-08 · Devender Singh, Tarun Sheel arxiv

Adaptive moment methods such as Adam use a diagonal, coordinate-wise preconditioner based on exponential moving averages of squared gradients. This diagonal scaling is coordinate-system dependent and can struggle with de…

Collaborative Filtering

On trajectory design from motion primitives for near time-optimal transitions for systems with oscillating internal dynamics

2024-11-28 · Thomas Auer, Frank Woittennek

An efficient approach to compute near time-optimal trajectories for linear kinematic systems with oscillatory internal dynamics is presented. Thereby, kinematic constraints with respect to velocity, acceleration and jerk…

Motion Planning

AdaSGD: Bridging the gap between SGD and Adam

2020-06-30 · Jiaxuan Wang, Jenna Wiens

In the context of stochastic gradient descent(SGD) and adaptive moment estimation (Adam),researchers have recently proposed optimization techniques that transition from Adam to SGD with the goal of improving both converg…