Policy Gradient with Second Order Momentum
Tianyu Sun
TL;DR
PG‑SOM introduces a lightweight second‑order momentum method for policy gradients by maintaining a diagonal Hessian estimate to precondition gradients. The diagonal curvature estimator is shown to be an unbiased, positive‑definite surrogate that ensures a descent direction in expectation, and the method adds only O$(D)$ memory. Empirical results on standard RL benchmarks demonstrate up to about 2.1x improvements in sample efficiency and reduced variance compared with first‑order and Fisher‑based baselines, with Runge–Kutta style two‑stage updates providing the best early learning and final performance when combined with gradient clipping. The work suggests that coarse curvature information, when paired with simple stabilizers, yields meaningful practical gains without the overhead of full second‑order methods or learned critics.
Abstract
We develop Policy Gradient with Second-Order Momentum (PG-SOM), a lightweight second-order optimisation scheme for reinforcement-learning policies. PG-SOM augments the classical REINFORCE update with two exponentially weighted statistics: a first-order gradient average and a diagonal approximation of the Hessian. By preconditioning the gradient with this curvature estimate, the method adaptively rescales each parameter, yielding faster and more stable ascent of the expected return. We provide a concise derivation, establish that the diagonal Hessian estimator is unbiased and positive-definite under mild regularity assumptions, and prove that the resulting update is a descent direction in expectation. Numerical experiments on standard control benchmarks show up to a 2.1x increase in sample efficiency and a substantial reduction in variance compared to first-order and Fisher-matrix baselines. These results indicate that even coarse second-order information can deliver significant practical gains while incurring only D memory overhead for a D-parameter policy. All code and reproducibility scripts will be made publicly available.
