Recently Andreas Tillmann presented the poster “An Infeasible-Point Subgradient Algorithm and a Computational Solver Comparison for l1-Minimization” at SPARS11. This poster summarized some results of the project SPEAR on sparse exact and approximate recovery of Marc Pfetsch an myself. We used this as an opportunity to release a draft of the accompanying paper with the same title. Although this draft is not totally ready to be submitted yet, I already summarize its content here.
Is this paper we considered the Basis Pursuit problem (beware: the linked Wikipedia page is stub at this time) from a purely optimization point of view. The Basis Pursuit problem is: For given matrix (with
) and a vector
, find the solution to
Hence, we mainly neglected all its interesting features of reproducing the sparsest solution of an underdetermined linear system and so on and solely concentrated on its solution as an optimization problem.
The paper has three somehow separated contributions:
- The new algorithm ISAL1: The problem (1) is a convex nonsmooth constrained optimization problem. Marc and Andreas are optimizers and they wondered how the most basic method for this class of problems would perform: The projected subgradient method: For solving
take steps along some negative subgradient and project back to
:
. For (1) subgradients are readily available, e.g.
(taken coordinate-wise). However, projecting onto the constraint
is not too easy. Denoting the projection simply by
, we can give a closed form expression (assuming that
has full rank) as
this has the drawback that one needs to explicitly invert a matrix (which, however, is just
and hence, is usually not too large since we assume
). However, we proposed replace the exact projection by an approximate one: In each step we solve for the projection by a truncated conjugate gradient method. While we expected that one should increase the accuracy of the approximate projection by increasing the number of CG-steps during iteration, surprisingly that is not true: Throughout the iteration, a fixed small number of iterations (say
for matrices of size
but mainly independently of the size) suffices to obtain convergence (and especially feasibility of the iterates). In this paper we give a proof of convergence of the methods under several assumptions on the step-sizes and projection accuracies building on our previous paper in which we analyzed this method in the general case. Moreover, we described several ways to speed up and stabilize the subgradient method. Finally, we called this method “Infeasible point subgradient algorithm for
”: ISAL1. A Matlab implementation can be found and the SPEAR website.
- HSE, the heuristic support evaluation: That’s a pretty neat device which can be integrated in any Basis Pursuit solver (beware: not Basis Pursuit denoising; we want the equality constraint). The idea is based on the following small lemma:
Lemma 1 A feasible vector
(i.e.
) is optimal for (1) if and only if there is
such that
.
The proof basically consists of noting that the normal cone on the constraint
is the image space of
and hence, the condition is equivalent to saying that this normal cone intersects the subgradient
which is necessary and sufficient for
being optimal. In practice the HSE does the following:
- deduce candidate (approx.) support
from a given
- compute approximate solution
to
by
with the help of CG
- if
check existence of a
with
and
- if that
exists, check if the relative duality gap
is small and return “success” if so, i.e. take
as an optimal solution
Again, CG usually performs great here and only a very few iterations (say
) are needed. In practice this methods did never return any vector
marked as optimal which was wrong.
- deduce candidate (approx.) support
- Computational comparison: We faced the challenge of a computational comparison for Basis Pursuit solvers.
The first step was, to design a testset. We constructed 100 matrices (74 of which are dense, 26 are sparse) by several constructions and concatenations (see Section 5 in the draft). More complicated was the construction of appropriate right hand sides. Why? Because we wanted to have unique solutions! That is, because we wanted to have the norm differencebetween optimal and computed solution as a measure for both optimality and feasibility. In the first place we used the ERC due to Joel Tropp (e.g. described in this blog post of Bob’s blog). However, this does not only guarantee uniqueness of solutions but also that the minimum
-norm solution is also the sparsest. Since that is probably too much to have for solutions (i.e. they have to be very sparse) we constructed some more right hand sides using L1TestPack: Construct an
such that there is
such that
and use
. This also leads to unique solutions for Basis Pursuit if
is injective when restricted to the columns which related to the entries in which
but allows for much larger supports.For the results of the comparison of ISAL1, SPGL1, YALL1,
-MAGIC, SparseLAB, the homotopy solves of Salman Asif and CPLEX check the paper. However, some things are interesting:
- homotopy is the overall winner (which is somehow clear for the instances constructed with ERC but not for others). Great work Salman!
- ISAL1 is quite good (although it is the simplest among all methods).
- HSE works great: Including it e.g. in SPGL1 produces “better” solution in less time.
- CPLEX is remarkably good (we used the dual simplex). So: How does it come that so many people keep saying that standard LP-solves do not work well for Basis Pursuit? That is simply not true for the dual simplex! (However, the interior point methods in CPLEX was not competitive at all.)
We plan to make a somehow deeper evaluation of our computational results before submitting the paper to have some more detailed conclusions on the performance of the solvers an different instances.
July 8, 2011 at 4:34 pm
Excellent work! Too bad we didn’t meet in Edinburgh.
July 14, 2011 at 9:42 am
[...] implementation of the heuristic support evaluation HSE (also described in my previous post). (By the way: We were tempted to call this device “support evaluation routine” with [...]
July 17, 2011 at 5:23 pm
[...] my previous post I announced the draft of the paper “Infeasible-Point Subgradient Algorithm and Computational [...]
November 2, 2011 at 4:49 pm
[...] obtain sparse solutions to underdetermined systems is -minimization a.k.a. Basis Pursuit on which I blogged recently: [...]