paper-with-me

Papers

Sharpened Lazy Incremental Quasi-Newton Method

2023-05-26 · Aakash Lahoti, Spandan Senapati, Ketan Rajawat, Alec Koppel

The problem of minimizing the sum of $n$ functions in $d$ dimensions is ubiquitous in machine learning and statistics. In many applications where the number of observations $n$ is large, it is necessary to use incremental or stochastic methods, as their per-iteration cost is independent of $n$. Of these, Quasi-Newton (QN) methods strike a balance between the per-iteration cost and the convergence rate. Specifically, they exhibit a superlinear rate with $O(d^2)$ cost in contrast to the linear rate of first-order methods with $O(d)$ cost and the quadratic rate of second-order methods with $O(d^3)$ cost. However, existing incremental methods have notable shortcomings: Incremental Quasi-Newton (IQN) only exhibits asymptotic superlinear convergence. In contrast, Incremental Greedy BFGS (IGS) offers explicit superlinear convergence but suffers from poor empirical performance and has a per-iteration cost of $O(d^3)$. To address these issues, we introduce the Sharpened Lazy Incremental Quasi-Newton Method (SLIQN) that achieves the best of both worlds: an explicit superlinear convergence rate, and superior empirical performance at a per-iteration $O(d^2)$ cost. SLIQN features two key changes: first, it incorporates a hybrid strategy of using both classic and greedy BFGS updates, allowing it to empirically outperform both IQN and IGS. Second, it employs a clever constant multiplicative factor along with a lazy propagation strategy, which enables it to have a cost of $O(d^2)$. Additionally, our experiments demonstrate the superiority of SLIQN over other incremental and stochastic Quasi-Newton variants and establish its competitiveness with second-order incremental methods.

📄 PDF Abstract BibTeX arXiv:2305.17283

Code (1)

aakashlahoti/sliqn 공식 구현

Tasks

Second-order methods

Similar Papers 제목 키워드 기반

IQN: An Incremental Quasi-Newton Method with Local Superlinear Convergence Rate

2017-02-02 · Aryan Mokhtari, Mark Eisen, Alejandro Ribeiro

The problem of minimizing an objective that can be written as the sum of a set of $n$ smooth and strongly convex functions is considered. The Incremental Quasi-Newton (IQN) method proposed here belongs to the family of s…

Incremental Quasi-Newton Methods with Faster Superlinear Convergence Rates

2024-02-04 · Zhuanghua Liu, Luo Luo, Bryan Kian Hsiang Low

We consider the finite-sum optimization problem, where each component function is strongly convex and has Lipschitz continuous gradient and Hessian. The recently proposed incremental quasi-Newton method is based on BFGS …

Affine-Invariant Online Optimization and the Low-rank Experts Problem

2017-12-01 · NeurIPS 2017 12 · Tomer Koren, Roi Livni

We present a new affine-invariant optimization algorithm called Online Lazy Newton. The regret of Online Lazy Newton is independent of conditioning: the algorithm's performance depends on the best possible preconditionin…

Stochastic Newton and Quasi-Newton Methods for Large Linear Least-squares Problems

2017-02-23 · Julianne Chung, Matthias Chung, J. Tanner Slagel, Luis Tenorio

We describe stochastic Newton and stochastic quasi-Newton approaches to efficiently solve large linear least-squares problems where the very large data sets present a significant computational burden (e.g., the size may …

Greedy and Random Quasi-Newton Methods with Faster Explicit Superlinear Convergence

2021-12-01 · NeurIPS 2021 12 · Dachao Lin, Haishan Ye, Zhihua Zhang

In this paper, we follow Rodomanov and Nesterov’s work to study quasi-Newton methods. We focus on the common SR1 and BFGS quasi-Newton methods to establish better explicit (local) superlinear convergence rates. First, ba…