Frank–Wolfe algorithm

From Infogalactic: the planetary knowledge core
Jump to: navigation, search

The Frank–Wolfe algorithm is an iterative first-order optimization algorithm for constrained convex optimization. Also known as the conditional gradient method,[1] reduced gradient algorithm and the convex combination algorithm, the method was originally proposed by Marguerite Frank and Philip Wolfe in 1956.[2] In each iteration, the Frank–Wolfe algorithm considers a linear approximation of the objective function, and moves slightly towards a minimizer of this linear function (taken over the same domain).

Problem statement

Suppose \mathcal{D} is a compact convex set in a vector space and f \colon \mathcal{D} \to \mathbb{R} is a convex differentiable real-valued function. The Frank–Wolfe algorithm solves the optimization problem

Minimize  f(\mathbf{x})
subject to  \mathbf{x} \in \mathcal{D}.

Algorithm

File:Frank-Wolfe Algorithm.png
A step of the Frank–Wolfe algorithm
Initialization: Let k \leftarrow 0, and let \mathbf{x}_0 \! be any point in \mathcal{D}.
Step 1. Direction-finding subproblem: Find \mathbf{s}_k solving
Minimize   \mathbf{s}^T \nabla f(\mathbf{x}_k)
Subject to \mathbf{s} \in \mathcal{D}
(Interpretation: Minimize the linear approximation of the problem given by the first-order Taylor approximation of f around \mathbf{x}_k \!.)
Step 2. Step size determination: Set \gamma \leftarrow \frac{2}{k+2}, or alternatively find \gamma that minimizes  f(\mathbf{x}_k+\gamma(\mathbf{s}_k -\mathbf{x}_k)) subject to 0 \le \gamma \le 1 .
Step 3. Update: Let \mathbf{x}_{k+1}\leftarrow \mathbf{x}_k+\gamma(\mathbf{s}_k-\mathbf{x}_k), let k \leftarrow k+1 and go to Step 1.

Properties

While competing methods such as gradient descent for constrained optimization require a projection step back to the feasible set in each iteration, the Frank–Wolfe algorithm only needs the solution of a linear problem over the same set in each iteration, and automatically stays in the feasible set.

The convergence of the Frank–Wolfe algorithm is sublinear in general: the error in the objective function to the optimum is O(1/k) after k iterations, so long as the gradient is Lipschitz continuous with respect to some norm. The same convergence rate can also be shown if the sub-problems are only solved approximately.[3]

The iterates of the algorithm can always be represented as a sparse convex combination of the extreme points of the feasible set, which has helped to the popularity of the algorithm for sparse greedy optimization in machine learning and signal processing problems,[4] as well as for example the optimization of minimum–cost flows in transportation networks.[5]

If the feasible set is given by a set of linear constraints, then the subproblem to be solved in each iteration becomes a linear program.

While the worst-case convergence rate with O(1/k) can not be improved in general, faster convergence can be obtained for special problem classes, such as some strongly convex problems.[6]

Lower bounds on the solution value, and primal-dual analysis

Since f is convex, f(\mathbf{y}) is always above the tangent plane of f at any point \mathbf{x} \in \mathcal{D}:


  f(\mathbf{y}) \geq f(\mathbf{x}) +  (\mathbf{y} - \mathbf{x})^T \nabla f(\mathbf{x})

This holds in particular for the (unknown) optimal solution \mathbf{x}^*. The best lower bound with respect to a given point \mathbf{x} is given by


  f(\mathbf{x}^*) \geq \min_{\mathbf{y} \in D} f(\mathbf{x}) +  (\mathbf{y} - \mathbf{x})^T \nabla f(\mathbf{x}) = f(\mathbf{x}) - \mathbf{x}^T \nabla f(\mathbf{x}) + \min_{\mathbf{y} \in D} \mathbf{y}^T \nabla f(\mathbf{x})

The latter optimization problem is solved in every iteration of the Frank–Wolfe algorithm, therefore the solution \mathbf{s}_k of the direction-finding subproblem of the k-th iteration can be used to determine increasing lower bounds l_k during each iteration by setting l_0 = - \infty and


  l_k := \max (l_{k - 1}, f(\mathbf{x}_k) +  (\mathbf{s}_k - \mathbf{x}_k)^T \nabla f(\mathbf{x}_k))

Such lower bounds on the unknown optimal value are important in practice because they can be used as a stopping criterion, and give an efficient certificate of the approximation quality in every iteration, since always l_k \leq f(\mathbf{x}^*) \leq f(\mathbf{x}_k).

It has been shown that this corresponding duality gap, that is the difference between f(\mathbf{x}_k) and the lower bound l_k, decreases with the same convergence rate, i.e. 
  f(\mathbf{x}_k) - l_k = O(1/k) .

Notes

  1. Lua error in package.lua at line 80: module 'strict' not found.
  2. Lua error in package.lua at line 80: module 'strict' not found.
  3. Lua error in package.lua at line 80: module 'strict' not found.
  4. Lua error in package.lua at line 80: module 'strict' not found.
  5. Lua error in package.lua at line 80: module 'strict' not found.
  6. Lua error in package.lua at line 80: module 'strict' not found.

Bibliography

External links

See also