Trisha Shetty (Editor)

Proximal gradient methods for learning

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit

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

Contents

min w R d 1 n i = 1 n ( y i w , x i ) 2 + λ w 1 ,  where  x i R d  and  y i R .

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. 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

min x H F ( 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 H 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 φ : H R an important operator to consider is its proximity operator prox φ : H H defined by

prox φ ( u ) = arg min x H φ ( x ) + 1 2 u x 2 2 ,

which is well-defined because of the strict convexity of the 2 norm. The proximity operator can be seen as a generalization of a projection. We see that the proximity operator is important because x is a minimizer to the problem min x H F ( x ) + R ( x ) if and only if

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

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. Namely, let φ : X R be a lower semicontinuous, convex function on a vector space X . We define its Fenchel conjugate φ : X R to be the function

φ ( u ) := sup x X x , u φ ( x ) .

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

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

which for γ = 1 implies that x = prox φ ( x ) + prox φ ( x ) . 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.

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:

min w R d 1 n i = 1 n ( y i w , x i ) 2 + λ w 1 ,

where x i R d  and  y i R . The 1 regularization problem is sometimes referred to as lasso (least absolute shrinkage and selection operator). 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

min w R d 1 n i = 1 n ( y i w , x i ) 2 + λ w 0 ,

where w 0 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.

Solving for ℓ 1 {displaystyle ell _{1}} proximity operator

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

min w R d 1 n i = 1 n ( y i w , x i ) 2 + w 1 ,

we consider our objective function in two parts: a convex, differentiable term F ( w ) = 1 n i = 1 n ( y i w , x i ) 2 and a convex function R ( w ) = w 1 . 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 prox R ( x ) as follows:

u = prox R ( x ) 0 ( R ( u ) + 1 2 u x 2 2 ) 0 R ( u ) + u x x u R ( u ) .

For R ( w ) = w 1 it is easy to compute R ( w ) : the i th entry of R ( w ) is precisely

| w i | = { 1 , w i > 0 1 , w i < 0 [ 1 , 1 ] , w i = 0.

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

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

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 w 0 R d , and for k = 1 , 2 , define

w k + 1 = S γ ( w k γ F ( w k ) ) .

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 ( w k γ F ( w k ) ) and a soft thresholding step (via S γ ).

Convergence of this fixed point scheme is well-studied in the literature 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 . Such methods have been studied extensively in previous years. 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.

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.

Adaptive step size

In the fixed point iteration scheme

w k + 1 = prox γ R ( w k γ F ( w k ) ) ,

one can allow variable step size γ k instead of a constant γ . Numerous adaptive step size schemes have been proposed throughout the literature. Applications of these schemes 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 ) = w 1 , which is not strictly convex. Hence, solutions to min w F ( 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

min w R d 1 n i = 1 n ( y i w , x i ) 2 + λ ( ( 1 μ ) w 1 + μ w 2 2 ) ,

where x i R d  and  y i R . For 0 < μ 1 the penalty term λ ( ( 1 μ ) w 1 + μ w 2 2 ) 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 μ w 2 2 acts as a preconditioner and can substantially improve convergence while not adversely affecting the sparsity of solutions.

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. Suppose the features are grouped into blocks { w 1 , , w G } . Here we take as a regularization penalty

R ( w ) = g = 1 G w g 2 ,

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 w g we have that proximity operator of λ γ ( g = 1 G w g 2 ) is given by

S ~ λ γ ( w g ) = { w g λ γ w g w g 2 , w g 2 > λ γ 0 , w g 2 λ γ

where w g is the g th 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.

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. For overlapping groups one common approach is known as latent group lasso which introduces latent variables to account for overlap. Nested group structures are studied in hierarchical structure prediction and with directed acyclic graphs.

References

Proximal gradient methods for learning Wikipedia