Sparse approximation


Sparse Approximation theory deals with sparse solutions for systems of linear equations. Techniques for finding these solutions and exploiting them in applications have found wide use in image processing, signal processing, machine learning, medical imaging, and more.

Sparse decomposition

Noiseless observations

Consider a linear system of equations, where is an underdetermined matrix and. The matrix is referred to as the dictionary, and is a signal of interest. The core sparse representation problem is defined as the quest for the sparsest possible representation satisfying. Due to the underdetermined nature of, this linear system admits in general infinitely many possible solutions, and among these we seek the one with the fewest non-zeros. Put formally, we solve
where is the pseudo-norm, which counts the number of non-zero components of. This problem is known to be NP-Hard with a reduction to NP-complete subset selection problems in combinatorial optimization.
Sparsity of implies that only a few components in it are non-zero. The underlying motivation for such a sparse decomposition is the desire to provide the simplest possible explanation of as a linear combination of as few as possible columns from, also referred to as atoms. As such, the signal can be viewed as a molecule composed of a few fundamental elements taken from.
While the above posed problem is indeed NP-Hard, its solution can often be found using approximation algorithms. One such option is a convex relaxation of the problem, obtained by using the -norm instead of, where simply sums the absolute values of the entries in. This is known as the Basis Pursuit algorithm, which can be handled using any linear programming solver. An alternative approximation method is a greedy technique, such as the Matching Pursuit, which finds the location of the non-zeros one at a time.
Surprisingly, under mild conditions on and the level of sparsity in the solution,, the sparse representation problem can be shown to have a unique solution, and BP and MP are guaranteed to find it perfectly.

Noisy observations

Often the observed signal is noisy. By relaxing the equality constraint and imposing an L2 norm#Euclidean norm|-norm on the data-fitting term, the sparse decomposition problem becomes
or put in a Lagrangian form,
where is replacing the.
Just as in the noiseless case, these two problems are NP-Hard in general, but can be approximated using pursuit algorithms. More specifically, changing the to an -norm, we obtain
which is known as the basis pursuit denoising. Similarly, matching pursuit can be used for approximating the solution of the above problems, finding the locations of the non-zeros one at a time until the error threshold is met. Here as well, theoretical guarantees suggest that BP and MP lead to nearly optimal solutions depending on the properties of and the cardinality of the solution.
Another interesting theoretical result refers to the case in which is unitary. Under this assumption, the problems posed above admit closed-form solutions in the form of non-linear shrinkage.

Variations

There are several variations to the basic sparse approximation problem.
Structured sparsity: In the original version of the problem, any of the atoms in the dictionary can be picked. In the structured sparsity model, instead of picking atoms individually, groups of them are to be picked. These groups can be overlapping and of varying size. The objective is to represent such that it is sparse while forcing this block-structure.
Collaborative sparse coding: The original version of the problem is defined for a single signal. In the collaborative sparse coding model, a set of signals is available, each believed to emerge from the same set of atoms from. In this case, the pursuit task aims to recover a set of sparse representations that best describe the data while forcing them to share the same support.
Other structures: More broadly, the sparse approximation problem can be cast while forcing a specific desired structure on the pattern of non-zero locations in. Two cases of interest that have been extensively studied are tree-based structure, and more generally, a Boltzmann distributed support.

Algorithms

As already mentioned above, there are various approximation algorithms that have been developed for addressing the sparse representation problem:
We mention below a few of these main methods.
Sparse approximation ideas and algorithms have been extensively used in signal processing, image processing, machine learning, medical imaging, array processing, data mining, and more. In most of these applications, the unknown signal of interest is modeled as a sparse combination of a few atoms from a given dictionary, and this is used as the regularization of the problem. These problems are typically accompanied by a dictionary learning mechanism that aims to fit to best match the model to the given data. The use of sparsity-inspired models has led to state-of-the-art results in a wide set of applications. Recent work suggests that there is a tight connection between sparse representation modeling and deep-learning.