Bregman method

From HandWiki
Short description: Iterative algorithm to solve certain convex optimization problems involving regularization

The Bregman method is an iterative algorithm to solve certain convex optimization problems involving regularization.[1] The original version is due to Lev M. Bregman, who published it in 1967.[2]

The algorithm is a row-action method accessing constraint functions one by one and the method is particularly suited for large optimization problems where constraints can be efficiently enumerated[citation needed]. The algorithm works particularly well for regularizers such as the [math]\displaystyle{ \ell_1 }[/math] norm, where it converges very quickly because of an error-cancellation effect.[3]

Algorithm

In order to be able to use the Bregman method, one must frame the problem of interest as finding [math]\displaystyle{ \min_u J(u) + f(u) }[/math], where [math]\displaystyle{ J }[/math] is a regularizing function such as [math]\displaystyle{ \ell_1 }[/math].[3]

The Bregman distance is defined as [math]\displaystyle{ D^p(u, v) := J(u) - (J(v) + \langle p, u - v\rangle) }[/math] where [math]\displaystyle{ p }[/math] belongs to the subdifferential of [math]\displaystyle{ J }[/math] at [math]\displaystyle{ u }[/math] (which we denoted [math]\displaystyle{ \partial J(u) }[/math]).[3][4] One performs the iteration [math]\displaystyle{ u_{k + 1}:= \min_u(\alpha D(u, u_k) + f(u)) }[/math], with [math]\displaystyle{ \alpha }[/math] a constant to be chosen by the user (and the minimization performed by an ordinary convex optimization algorithm),[3] or [math]\displaystyle{ u_{k + 1}:= \min_u(D^{p_k}(u, u_k) + f(u)) }[/math], with [math]\displaystyle{ p_k }[/math] chosen each time to be a member of [math]\displaystyle{ \partial J(u_k) }[/math].[4]

The algorithm starts with a pair of primal and dual variables. Then, for each constraint a generalized projection onto its feasible set is performed, updating both the constraint's dual variable and all primal variables for which there are non-zero coefficients in the constraint functions gradient. In case the objective is strictly convex and all constraint functions are convex, the limit of this iterative projection converges to the optimal primal dual pair.[citation needed]

In the case of a basis pursuit-type problem [math]\displaystyle{ \min_{x: Ax = b}(|x|_1 + \frac{1}{2\alpha}|x|_2^2) }[/math], the Bregman method is equivalent to ordinary gradient descent on the dual problem [math]\displaystyle{ \min_y (-b^t y + \frac{\alpha}{2}|A^t y - \text{Proj}_{[-1, 1]^n}(A^t y)|^2) }[/math].[5] An exact regularization-type effect also occurs in this case; if [math]\displaystyle{ \alpha }[/math] exceeds a certain threshold, the optimum value of [math]\displaystyle{ x }[/math] is precisely the optimum solution of [math]\displaystyle{ \min_{x: Ax = b}|x|_1 }[/math].[3][5]

Applications

The Bregman method or its generalizations can be applied to:

Generalizations and drawbacks

The method has links to the method of multipliers and dual ascent method (through the so-called Bregman alternating direction method of multipliers,[10][7] generalizing the alternating direction method of multipliers[8]) and multiple generalizations exist.

One drawback of the method is that it is only provably convergent if the objective function is strictly convex. In case this can not be ensured, as for linear programs or non-strictly convex quadratic programs, additional methods such as proximal gradient methods have been developed.[citation needed] In the case of the Rudin-Osher-Fatemi model of image denoising[clarification needed], the Bregman method provably converges.[11]

Some generalizations of the Bregman method include:

Linearized Bregman

In the Linearized Bregman method, one linearizes the intermediate objective functions [math]\displaystyle{ D^p(u, u_k) + f(u) }[/math] by replacing the second term with [math]\displaystyle{ f(u_k) + \langle f'(u_k), u - u_k\rangle }[/math] (which approximates the second term near [math]\displaystyle{ u_k }[/math]) and adding the penalty term [math]\displaystyle{ \frac{1}{2\delta}|u - u_k|_2^2 }[/math] for a constant [math]\displaystyle{ \delta }[/math]. The result is much more computationally tractable, especially in basis pursuit-type problems.[4][5] In the case of a generic basis pursuit problem [math]\displaystyle{ \min \mu|u|_1 + \frac{1}{2}|Au - f|_2^2 }[/math], one can express the iteration as [math]\displaystyle{ v_{k + 1} := v_k + A^t(f - Au_k), u_{k + 1, i} := \delta~\text{shrink}(v_{k, i}, \mu) }[/math] for each component [math]\displaystyle{ i }[/math], where we define [math]\displaystyle{ \text{shrink}(y, a) := \begin{cases} y - a, & y\in(a,\infty) \\ 0, &y\in[-a, a]\\ y + a, & y\in(-\infty, -a) \end{cases} }[/math].[4]

Sometimes, when running the Linearized Bregman method, there are periods of "stagnation" where the residual[clarification needed] is almost constant. To alleviate this issue, one can use the Linearized Bregman method with kicking, where one essentially detects the beginning of a stagnation period, then predicts and skips to the end of it.[4][5]

Since Linearized Bregman is mathematically equivalent to gradient descent, it can be accelerated with methods to accelerate gradient descent, such as line search, L-BGFS, Barzilai-Borwein steps, or the Nesterov method; the last has been proposed as the accelerated linearized Bregman method.[5][9]

Split Bregman

The Split Bregman method solves problems of the form [math]\displaystyle{ \min_u |\Phi(u)|_1 + H(u) }[/math], where [math]\displaystyle{ \Phi }[/math] and [math]\displaystyle{ H }[/math] are both convex,[4] particularly problems of the form [math]\displaystyle{ \min_u |\Phi u|_1 + |Ku - f|^2 }[/math].[6] We start by rewriting it as the constrained optimization problem [math]\displaystyle{ \min_{u: d = \Phi(u)} |d|_1 + H(u) }[/math], then relax it into [math]\displaystyle{ \min_{u, d} |d|_1 + H(u) + \frac{\lambda}{2}|d - \Phi(u)|_2^2 }[/math] where [math]\displaystyle{ \lambda }[/math] is a constant. By defining [math]\displaystyle{ J(u, d) := |d| + H(u) }[/math], one reduces the problem to one that can be solved with the ordinary Bregman algorithm.[4][6]

The Split Bregman method has been generalized to optimization over complex numbers using Wirtinger derivatives.[1]

References

  1. 1.0 1.1 1.2 1.3 Xiong, Kai; Zhao, Guanghui; Shi, Guangming; Wang, Yingbin (2019-09-12). "A Convex Optimization Algorithm for Compressed Sensing in a Complex Domain: The Complex-Valued Split Bregman Method". Sensors 19 (20): 4540. 18 Oct 2019. doi:10.3390/s19204540. PMID 31635423. PMC 6832202. Bibcode2019Senso..19.4540X. https://www.researchgate.net/publication/336665179. 
  2. Bregman L. "A Relaxation Method of Finding a Common Point of Convex Sets and its Application to Problems of Optimization". Dokl. Akad. Nauk SSSR, v. 171, No. 5, 1966, p.p. 1019-1022. (English translation: Soviet Math. Dokl., v. 7, 1966, p.p. 1578-1581)
  3. 3.00 3.01 3.02 3.03 3.04 3.05 3.06 3.07 3.08 3.09 3.10 Yin, Wotao (8 Dec 2009). "The Bregman Methods: Review and New Results". https://www.caam.rice.edu/~optimization/L1/bregman/WotaoYin_Bregman_SIAMPDE_09.pdf. 
  4. 4.0 4.1 4.2 4.3 4.4 4.5 4.6 4.7 Bush, Jacqueline (10 Jun 2011). "University of California, Santa Barbara Senior Thesis: Bregman Algorithms". https://web.math.ucsb.edu/~cgarcia/UGProjects/BregmanAlgorithms_JacquelineBush.pdf. 
  5. 5.0 5.1 5.2 5.3 5.4 5.5 Yin, Wotao (28 May 2009). "Analysis and Generalizations of the Linearized Bregman Method". SIAM Journal on Imaging Sciences 3 (4): 856–877. doi:10.1137/090760350. ftp://ftp.math.ucla.edu/pub/camreport/cam09-42.pdf. Retrieved 16 Apr 2021. 
  6. 6.0 6.1 6.2 Goldstein, Tom; Osher, Stanley (2 Jun 2008). "The Split Bregman Method for L1-Regularized Problems". SIAM J. Imaging Sci. 2 (2): 323–343. doi:10.1137/080725891. https://www.researchgate.net/publication/220124333. Retrieved 22 Apr 2021. 
  7. 7.0 7.1 Jiang, Chunzhi (May 2015). "Comparison of Variable Penalty ADMM with Split Bregman Method on Hyperspectral Imaging Problems". https://etda.libraries.psu.edu/files/final_submissions/9702. 
  8. 8.0 8.1 8.2 8.3 Boyd, Stephen; Parikh, Neal; Chu, Eric; Peleato, Borja; Eckstein, Jonathan (19 Nov 2010). "Distributed Optimization and Statistical Learning via the Alternating Direction Method of Multipliers". Foundations and Trends in Machine Learning 3: 1–122. doi:10.1561/2200000016. 
  9. 9.0 9.1 Huang, Bo; Ma, Shiqian; Goldfarb, Donald (27 Jun 2011). "Accelerated Linearized Bregman Method". Journal of Scientific Computing (Plenum Press) 54 (2–3): 428–453. 1 Feb 2013. doi:10.1007/s10915-012-9592-9. ISSN 0885-7474. 
  10. Wang, Huahua; Banerjee, Arindam (13 Jun 2013). "Bregman alternating direction method of multipliers". NIPS'14: Proceedings of the 27th International Conference on Neural Information Processing Systems 2: 2816–2824. 
  11. Jia, Rong-Qing (3 Oct 2008). "Convergence analysis of the Bregman method for the variational model of image denoising". Applied and Computational Harmonic Analysis 27 (3): 367–379. Nov 2009. doi:10.1016/j.acha.2009.05.002. https://sites.ualberta.ca/~rjia/Paper06-10/JZZ09.pdf. Retrieved 22 Apr 2021.