Harman Patil (Editor)

Random coordinate descent

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit
Random coordinate descent

Randomized (Block) Coordinate Descent Method is an optimization algorithm popularized by Nesterov (2010) and Richtárik and Takáč (2011). The first analysis of this method, when applied to the problem of minimizing a smooth convex function, was performed by Nesterov (2010). In Nesterov's analysis the method needs to be applied to a quadratic perturbation of the original function with an unknown scaling factor. Richtárik and Takáč (2011) give iteration complexity bounds which do not require this, i.e., the method is applied to the objective function directly. Furthermore, they generalize the setting to the problem of minimizing a composite function, i.e., sum of a smooth convex and a (possibly nonsmooth) convex block-separable function:

Contents

F ( x ) = f ( x ) + Ψ ( x ) ,

where Ψ ( x ) = i = 1 n Ψ i ( x ( i ) ) , x R N is decomposed into n blocks of variables/coordinates: x = ( x ( 1 ) , , x ( n ) ) and Ψ 1 , , Ψ n are (simple) convex functions.

Example (block decomposition): If x = ( x 1 , x 2 , , x 5 ) R 5 and n = 3 , one may choose x ( 1 ) = ( x 1 , x 3 ) , x ( 2 ) = ( x 2 , x 5 ) and x ( 3 ) = x 4 .

Example (block-separable regularizers):

  1. n = N ; Ψ ( x ) = x 1 = i = 1 n | x i |
  2. N = N 1 + N 2 + + N n ; Ψ ( x ) = i = 1 n x ( i ) 2 , where x ( i ) R N i and 2 is the standard Euclidean norm.

Algorithm

Consider the optimization problem

min x R n f ( x ) ,

where f is a convex and smooth function.

Smoothness: By smoothness we mean the following: we assume the gradient of f is coordinate-wise Lipschitz continuous with constants L 1 , L 2 , , L n . That is, we assume that

| i f ( x + h e i ) i f ( x ) | L i | h | ,

for all x R n and h R , where i denotes the partial derivative with respect to variable x ( i ) .

Nesterov, and Richtarik and Takac showed that the following algorithm converges to the optimal point:

Convergence rate

Since the iterates of this algorithm are random vectors, a complexity result would give a bound on the number of iterations needed for the method to output an approximate solution with high probability. It was shown in that if k 2 n R L ( x 0 ) ϵ log ( f ( x 0 ) f ϵ ρ ) , where R L ( x ) = max y max x X { y x L : f ( y ) f ( x ) } , f is an optimal solution ( f = min x R n { f ( x ) } ), ρ ( 0 , 1 ) is a confidence level and ϵ > 0 is target accuracy, then P r o b ( f ( x k ) f > ϵ ) ρ .

Example on particular function

The following Figure shows how x k develops during iterations, in principle. The problem is

f ( x ) = 1 2 x T ( 1 0.5 0.5 1 ) x ( 1.5 1.5 ) x , x 0 = ( 0 0 ) T

Extension to Block Coordinate Setting

One can naturally extend this algorithm not only just to coordinates, but to blocks of coordinates. Assume that we have space R 5 . This space has 5 coordinate directions, concretely e 1 = ( 1 , 0 , 0 , 0 , 0 ) T , e 2 = ( 0 , 1 , 0 , 0 , 0 ) T , e 3 = ( 0 , 0 , 1 , 0 , 0 ) T , e 4 = ( 0 , 0 , 0 , 1 , 0 ) T , e 5 = ( 0 , 0 , 0 , 0 , 1 ) T in which Random Coordinate Descent Method can move. However, one can group some coordinate directions into blocks and we can have instead of those 5 coordinate directions 3 block coordinate directions (see image).

References

Random coordinate descent Wikipedia


Similar Topics