Proximal gradient methods for learning

From testwiki
Revision as of 20:03, 13 May 2024 by imported>Citation bot (Added doi. | Use this bot. Report bugs. | Suggested by Dominic3203 | Category:Machine learning | #UCB_Category 154/230)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Proximal gradient (forward backward splitting) methods for learning is an area of research in optimization and statistical learning theory which studies algorithms for a general class of convex regularization problems where the regularization penalty may not be differentiable. One such example is 1 regularization (also known as Lasso) of the form

minwd1ni=1n(yiw,xi)2+λw1, where xid and yi.

Proximal gradient methods offer a general framework for solving regularization problems from statistical learning theory with penalties that are tailored to a specific problem application.[1][2] Such customized penalties can help to induce certain structure in problem solutions, such as sparsity (in the case of lasso) or group structure (in the case of group lasso).

Relevant background

Proximal gradient methods are applicable in a wide variety of scenarios for solving convex optimization problems of the form

minxF(x)+R(x),

where F is convex and differentiable with Lipschitz continuous gradient, R is a convex, lower semicontinuous function which is possibly nondifferentiable, and is some set, typically a Hilbert space. The usual criterion of x minimizes F(x)+R(x) if and only if (F+R)(x)=0 in the convex, differentiable setting is now replaced by

0(F+R)(x),

where φ denotes the subdifferential of a real-valued, convex function φ.

Given a convex function φ: an important operator to consider is its proximal operator proxφ: defined by

proxφ(u)=argminxφ(x)+12ux22,

which is well-defined because of the strict convexity of the 2 norm. The proximal operator can be seen as a generalization of a projection.[1][3][4] We see that the proximity operator is important because x* is a minimizer to the problem minxF(x)+R(x) if and only if

x*=proxγR(x*γF(x*)), where γ>0 is any positive real number.[1]

Moreau decomposition

One important technique related to proximal gradient methods is the Moreau decomposition, which decomposes the identity operator as the sum of two proximity operators.[1] Namely, let φ:𝒳 be a lower semicontinuous, convex function on a vector space 𝒳. We define its Fenchel conjugate φ*:𝒳 to be the function

φ*(u):=supx𝒳x,uφ(x).

The general form of Moreau's decomposition states that for any x𝒳 and any γ>0 that

x=proxγφ(x)+γproxφ*/γ(x/γ),

which for γ=1 implies that x=proxφ(x)+proxφ*(x).[1][3] The Moreau decomposition can be seen to be a generalization of the usual orthogonal decomposition of a vector space, analogous with the fact that proximity operators are generalizations of projections.[1]

In certain situations it may be easier to compute the proximity operator for the conjugate φ* instead of the function φ, and therefore the Moreau decomposition can be applied. This is the case for group lasso.

Lasso regularization

Consider the regularized empirical risk minimization problem with square loss and with the 1 norm as the regularization penalty:

minwd1ni=1n(yiw,xi)2+λw1,

where xid and yi. The 1 regularization problem is sometimes referred to as lasso (least absolute shrinkage and selection operator).[5] Such 1 regularization problems are interesting because they induce sparse solutions, that is, solutions w to the minimization problem have relatively few nonzero components. Lasso can be seen to be a convex relaxation of the non-convex problem

minwd1ni=1n(yiw,xi)2+λw0,

where w0 denotes the 0 "norm", which is the number of nonzero entries of the vector w. Sparse solutions are of particular interest in learning theory for interpretability of results: a sparse solution can identify a small number of important factors.[5]

Solving for L1 proximity operator

For simplicity we restrict our attention to the problem where λ=1. To solve the problem

minwd1ni=1n(yiw,xi)2+w1,

we consider our objective function in two parts: a convex, differentiable term F(w)=1ni=1n(yiw,xi)2 and a convex function R(w)=w1. Note that R is not strictly convex.

Let us compute the proximity operator for R(w). First we find an alternative characterization of the proximity operator proxR(x) as follows:

u=proxR(x)0(R(u)+12ux22)0R(u)+uxxuR(u).

For R(w)=w1 it is easy to compute R(w): the ith entry of R(w) is precisely

|wi|={1,wi>01,wi<0[1,1],wi=0.

Using the recharacterization of the proximity operator given above, for the choice of R(w)=w1 and γ>0 we have that proxγR(x) is defined entrywise by

(proxγR(x))i={xiγ,xi>γ0,|xi|γxi+γ,xi<γ,

which is known as the soft thresholding operator Sγ(x)=proxγ1(x).[1][6]

Fixed point iterative schemes

To finally solve the lasso problem we consider the fixed point equation shown earlier:

x*=proxγR(x*γF(x*)).

Given that we have computed the form of the proximity operator explicitly, then we can define a standard fixed point iteration procedure. Namely, fix some initial w0d, and for k=1,2, define

wk+1=Sγ(wkγF(wk)).

Note here the effective trade-off between the empirical error term F(w) and the regularization penalty R(w). This fixed point method has decoupled the effect of the two different convex functions which comprise the objective function into a gradient descent step (wkγF(wk)) and a soft thresholding step (via Sγ).

Convergence of this fixed point scheme is well-studied in the literature[1][6] and is guaranteed under appropriate choice of step size γ and loss function (such as the square loss taken here). Accelerated methods were introduced by Nesterov in 1983 which improve the rate of convergence under certain regularity assumptions on F.[7] Such methods have been studied extensively in previous years.[8] For more general learning problems where the proximity operator cannot be computed explicitly for some regularization term R, such fixed point schemes can still be carried out using approximations to both the gradient and the proximity operator.[4][9]

Practical considerations

There have been numerous developments within the past decade in convex optimization techniques which have influenced the application of proximal gradient methods in statistical learning theory. Here we survey a few important topics which can greatly improve practical algorithmic performance of these methods.[2][10]

Adaptive step size

In the fixed point iteration scheme

wk+1=proxγR(wkγF(wk)),

one can allow variable step size γk instead of a constant γ. Numerous adaptive step size schemes have been proposed throughout the literature.[1][4][11][12] Applications of these schemes[2][13] suggest that these can offer substantial improvement in number of iterations required for fixed point convergence.

Elastic net (mixed norm regularization)

Elastic net regularization offers an alternative to pure 1 regularization. The problem of lasso (1) regularization involves the penalty term R(w)=w1, which is not strictly convex. Hence, solutions to minwF(w)+R(w), where F is some empirical loss function, need not be unique. This is often avoided by the inclusion of an additional strictly convex term, such as an 2 norm regularization penalty. For example, one can consider the problem

minwd1ni=1n(yiw,xi)2+λ((1μ)w1+μw22),

where xid and yi. For 0<μ1 the penalty term λ((1μ)w1+μw22) is now strictly convex, and hence the minimization problem now admits a unique solution. It has been observed that for sufficiently small μ>0, the additional penalty term μw22 acts as a preconditioner and can substantially improve convergence while not adversely affecting the sparsity of solutions.[2][14]

Exploiting group structure

Proximal gradient methods provide a general framework which is applicable to a wide variety of problems in statistical learning theory. Certain problems in learning can often involve data which has additional structure that is known a priori. In the past several years there have been new developments which incorporate information about group structure to provide methods which are tailored to different applications. Here we survey a few such methods.

Group lasso

Group lasso is a generalization of the lasso method when features are grouped into disjoint blocks.[15] Suppose the features are grouped into blocks {w1,,wG}. Here we take as a regularization penalty

R(w)=g=1Gwg2,

which is the sum of the 2 norm on corresponding feature vectors for the different groups. A similar proximity operator analysis as above can be used to compute the proximity operator for this penalty. Where the lasso penalty has a proximity operator which is soft thresholding on each individual component, the proximity operator for the group lasso is soft thresholding on each group. For the group wg we have that proximity operator of λγ(g=1Gwg2) is given by

S~λγ(wg)={wgλγwgwg2,wg2>λγ0,wg2λγ

where wg is the gth group.

In contrast to lasso, the derivation of the proximity operator for group lasso relies on the Moreau decomposition. Here the proximity operator of the conjugate of the group lasso penalty becomes a projection onto the ball of a dual norm.[2]

Other group structures

In contrast to the group lasso problem, where features are grouped into disjoint blocks, it may be the case that grouped features are overlapping or have a nested structure. Such generalizations of group lasso have been considered in a variety of contexts.[16][17][18][19] For overlapping groups one common approach is known as latent group lasso which introduces latent variables to account for overlap.[20][21] Nested group structures are studied in hierarchical structure prediction and with directed acyclic graphs.[18]

See also

References

Template:Reflist