HOME

TheInfoList



OR:

Sparse approximation (also known as sparse representation) theory deals with
sparse Sparse is a computer software tool designed to find possible coding faults in the Linux kernel. Unlike other such tools, this static analysis tool was initially designed to only flag constructs that were likely to be of interest to kernel de ...
solutions for
systems of linear equations In mathematics, a system of linear equations (or linear system) is a collection of one or more linear equations involving the same variables. For example, :\begin 3x+2y-z=1\\ 2x-2y+4z=-2\\ -x+\fracy-z=0 \end is a system of three equations in t ...
. Techniques for finding these solutions and exploiting them in applications have found wide use in
image processing An image is a visual representation of something. It can be two-dimensional, three-dimensional, or somehow otherwise feed into the visual system to convey information. An image can be an artifact, such as a photograph or other two-dimension ...
,
signal processing Signal processing is an electrical engineering subfield that focuses on analyzing, modifying and synthesizing '' signals'', such as sound, images, and scientific measurements. Signal processing techniques are used to optimize transmissions, ...
,
machine learning Machine learning (ML) is a field of inquiry devoted to understanding and building methods that 'learn', that is, methods that leverage data to improve performance on some set of tasks. It is seen as a part of artificial intelligence. Machine ...
, medical imaging, and more.


Sparse decomposition


Noiseless observations

Consider a linear system of equations x = D\alpha, where D is an underdetermined m\times p
matrix Matrix most commonly refers to: * ''The Matrix'' (franchise), an American media franchise ** '' The Matrix'', a 1999 science-fiction action film ** "The Matrix", a fictional setting, a virtual reality environment, within ''The Matrix'' (franchi ...
(m < p) and x \in \mathbb^m,\alpha \in \mathbb^p. The matrix D (typically assumed to be full-rank) is referred to as the dictionary, and x is a signal of interest. The core sparse representation problem is defined as the quest for the sparsest possible representation \alpha satisfying x = D\alpha. Due to the underdetermined nature of D, 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 : \min_ \, \alpha\, _0 \text x = D\alpha, where \, \alpha\, _0 = \#\ is the \ell_0 pseudo-norm, which counts the
number A number is a mathematical object used to count, measure, and label. The original examples are the natural numbers 1, 2, 3, 4, and so forth. Numbers can be represented in language with number words. More universally, individual numbers ...
of non-zero components of \alpha. This problem is known to be NP-hard with a reduction to NP-complete subset selection problems in
combinatorial optimization Combinatorial optimization is a subfield of mathematical optimization that consists of finding an optimal object from a finite set of objects, where the set of feasible solutions is discrete or can be reduced to a discrete set. Typical combi ...
. Sparsity of \alpha implies that only a few (k \ll m < p) components in it are non-zero. The underlying motivation for such a sparse decomposition is the desire to provide the simplest possible explanation of x as a linear combination of as few as possible columns from D, also referred to as atoms. As such, the signal x can be viewed as a molecule composed of a few fundamental elements taken from D. 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 \ell_1-norm instead of \ell_0, where \, \alpha\, _1 simply sums the absolute values of the entries in \alpha. This is known as the basis pursuit (BP) algorithm, which can be handled using any
linear programming Linear programming (LP), also called linear optimization, is a method to achieve the best outcome (such as maximum profit or lowest cost) in a mathematical model whose requirements are represented by linear relationships. Linear programming is ...
solver. An alternative approximation method is a greedy technique, such as the matching pursuit (MP), which finds the location of the non-zeros one at a time. Surprisingly, under mild conditions on D (using the spark (mathematics), the mutual coherence or the restricted isometry property) and the level of sparsity in the solution, k, 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 x is noisy. By relaxing the equality constraint and imposing an \ell_2-norm on the data-fitting term, the sparse decomposition problem becomes : \min_ \, \alpha\, _0 \text \, x - D\alpha \, _2^2 \le \epsilon^2, or put in a Lagrangian form, : \min_ \lambda \, \alpha\, _0 + \frac\, x - D\alpha \, _2^2, where \lambda is replacing the \epsilon. 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 \ell_0 to an \ell_1-norm, we obtain : \min_ \lambda \, \alpha\, _1 + \frac \, x - D\alpha \, _2^2, which is known as the
basis pursuit denoising In applied mathematics and statistics, basis pursuit denoising (BPDN) refers to a mathematical optimization problem of the form : \min_x \left(\frac \, y - Ax\, ^2_2 + \lambda \, x\, _1\right), where \lambda is a parameter that controls the trad ...
. 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 D and the cardinality of the solution k. Another interesting theoretical result refers to the case in which D is a
unitary matrix In linear algebra, a Complex number, complex Matrix (mathematics), square matrix is unitary if its conjugate transpose is also its Invertible matrix, inverse, that is, if U^* U = UU^* = UU^ = I, where is the identity matrix. In physics, esp ...
. Under this assumption, the problems posed above (with either \ell_0 or \ell_1) 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 (block) 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 x such that it is sparse while forcing this block-structure. Collaborative (joint) sparse coding: The original version of the problem is defined for a single signal x. In the collaborative (joint) sparse coding model, a set of signals is available, each believed to emerge from (nearly) the same set of atoms from D. 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 (or close-by) 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 \alpha. 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 (also referred to as pursuit) algorithms that have been developed for addressing the sparse representation problem: : \min_ \, \alpha\, _0 \text \, x - D\alpha \, _2^2 \le \epsilon^2. We mention below a few of these main methods. * Matching pursuit is a greedy iterative algorithm for approximately solving the above problem. It works by gradually finding the locations of the non-zeros in \alpha one at a time. The core idea is to find in each step the column (atom) in D that best correlates with the current residual (initialized to x), and then updating this residual to take the new atom and its coefficient into account. Matching pursuit might pick the same atom multiple times. * Orthogonal matching pursuit is very similar to matching pursuit, with one major difference: in each of the algorithm's step, all the non-zero coefficients are updated by a
least squares The method of least squares is a standard approach in regression analysis to approximate the solution of overdetermined systems (sets of equations in which there are more equations than unknowns) by minimizing the sum of the squares of the r ...
. As a consequence, the residual is orthogonal to the already chosen atoms, and thus an atom cannot be picked more than once. * Stage-wise greedy methods: Improved variations over the above are algorithms that operate greedily while adding two critical features: (i) the ability to add groups of non-zeros at a time (instead of one non-zero per round); and (ii) including a pruning step in each round in which several of the atoms are discarded from the support. Representatives of this approach are the Subspace-Pursuit algorithm and the CoSaMP. * Basis pursuit solves a convex relaxed version of the problem by replacing the \ell_0 by an \ell_1-norm. Note that this only defines a new objective, while leaving open the question of the algorithm to use for getting the desired solution. Commonly considered such algorithms are the IRLS, LARS, and iterative soft-shrinkage methods. * There are several other methods for solving sparse decomposition problems: homotopy method,
coordinate descent Coordinate descent is an optimization algorithm that successively minimizes along coordinate directions to find the minimum of a function. At each iteration, the algorithm determines a coordinate or coordinate block via a coordinate selection rule, ...
, iterative hard-thresholding, first order proximal methods, which are related to the above-mentioned iterative soft-shrinkage algorithms, and Dantzig selector.


Applications

Sparse approximation ideas and algorithms have been extensively used in
signal processing Signal processing is an electrical engineering subfield that focuses on analyzing, modifying and synthesizing '' signals'', such as sound, images, and scientific measurements. Signal processing techniques are used to optimize transmissions, ...
,
image processing An image is a visual representation of something. It can be two-dimensional, three-dimensional, or somehow otherwise feed into the visual system to convey information. An image can be an artifact, such as a photograph or other two-dimension ...
,
machine learning Machine learning (ML) is a field of inquiry devoted to understanding and building methods that 'learn', that is, methods that leverage data to improve performance on some set of tasks. It is seen as a part of artificial intelligence. Machine ...
, medical imaging,
array processing Array processing is a wide area of research in the field of signal processing that extends from the simplest form of 1 dimensional line arrays to 2 and 3 dimensional array geometries. Array structure can be defined as a set of sensors that are sp ...
, 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 Sparse coding is a representation learning method which aims at finding a sparse representation of the input data (also known as sparse coding) in the form of a linear combination of basic elements as well as those basic elements themselves. These ...
mechanism that aims to fit D 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.


See also

*
Compressed sensing Compressed sensing (also known as compressive sensing, compressive sampling, or sparse sampling) is a signal processing technique for efficiently acquiring and reconstructing a signal, by finding solutions to underdetermined linear systems. This ...
*
Sparse dictionary learning Sparse coding is a representation learning method which aims at finding a sparse representation of the input data (also known as sparse coding) in the form of a linear combination of basic elements as well as those basic elements themselves. These ...
* K-SVD *
Lasso (statistics) In statistics and machine learning, lasso (least absolute shrinkage and selection operator; also Lasso or LASSO) is a regression analysis method that performs both variable selection and regularization in order to enhance the prediction accura ...
*
Regularization (mathematics) In mathematics, statistics, finance, computer science, particularly in machine learning and inverse problems, regularization is a process that changes the result answer to be "simpler". It is often used to obtain results for ill-posed proble ...
and
inverse problems An inverse problem in science is the process of calculating from a set of observations the causal factors that produced them: for example, calculating an image in X-ray computed tomography, source reconstruction in acoustics, or calculating the ...


References

{{Numerical linear algebra Numerical linear algebra