Adaptive coordinate descent


Adaptive coordinate descent is an improvement of the coordinate descent algorithm to non-separable optimization by the use of adaptive encoding. The adaptive coordinate descent approach gradually builds a transformation of the coordinate system such that the new coordinates are as decorrelated as possible with respect to the objective function. The adaptive coordinate descent was shown to be competitive to the state-of-the-art evolutionary algorithms and has the following invariance properties:
  1. Invariance with respect to monotonous transformations of the function
  2. Invariance with respect to orthogonal transformations of the search space.
CMA-like Adaptive Encoding Update mostly based on principal component analysis is used to extend the coordinate descent method to the optimization of non-separable problems.
The adaptation of an appropriate coordinate system allows adaptive coordinate descent to outperform coordinate descent on non-separable functions. The following figure illustrates the convergence of both algorithms on 2-dimensional Rosenbrock function up to a target function value, starting from the initial point.
The adaptive coordinate descent method reaches the target value after only 325 function evaluations, that is comparable to gradient-based methods. The algorithm has linear time complexity if update coordinate system every D iterations, it is also suitable for large-scale non-linear optimization.

Relevant approaches

First approaches to optimization using adaptive coordinate system were proposed already in the 1960s. PRincipal Axis algorithm, also referred to as Brent's algorithm, is an derivative-free algorithm which assumes quadratic form of the optimized function and repeatedly updates a set of conjugate search directions.
The algorithm, however, is not invariant to scaling of the objective function and may fail under its certain rank-preserving transformations. A recent analysis of PRAXIS can be found in
For practical applications see, where an adaptive coordinate descent approach with step-size adaptation and local coordinate system rotation was proposed
for robot-manipulator path planning in 3D space with static polygonal obstacles.