arxiv: v1 [cs.it] 20 Jul 2016

Size: px
Start display at page:

Download "arxiv: v1 [cs.it] 20 Jul 2016"

Transcription

1 ONSAGER-CORRECTED DEEP LEARNING FOR SPARSE LINEAR INVERSE PROBLES ark Borgerding and Philip Schniter Dept. of ECE, The Ohio State Universit, Columbus, OH arxiv: v1 [cs.it] 2 Jul 216 ABSTRACT Deep learning has gained great popularit due to its widespread success on man inference problems. We consider the application of deep learning to the sparse linear inverse problem encountered in compressive sensing, where one seeks to recover a sparse signal from a small number of nois linear measurements. In this paper, we propose a novel neural-network architecture that decouples prediction errors across laers in the same wa that the approximate message passing (AP algorithm decouples them across iterations: through Onsager correction. Numerical experiments suggest that our learned AP network significantl improves upon Gregor and Le- Cun s learned ISTA network in both accurac and complexit. 1 Index Terms Deep learning, compressive sensing, sparse coding, approximate message passing. 1. INTRODUCTION We consider the problem of recovering a signals C N from a nois linear measurement = Φs+n C, (1 where Φ C N represents a linear measurement operator and n C a noise vector. In man cases of interest, N. We will assume that the signal vector s has a sparse representation in a known orthonormal basis Ψ C N N, i.e., that s = Ψx for some sparse vector x C N. Thus we define A ΦΨ C N, write (1 as = Ax+n, (2 and seek to recover an sparse x from. In the sequel, we will refer to this problem as the sparse linear inverse problem. Note that the resulting estimate x of x can be easil converted into an estimate ŝ ofsvia ŝ = Ψ x. The sparse linear inverse problem has received enormous attention over the last few ears, in part because it is central to compressive sensing [1] and sparse coding [2]. an methods have been developed to solve this problem. ost of the existing methods involve a reconstruction algorithm that inputs a pair(,a and produces an sparse estimate x. A mriad of such algorithms have been proposed, including both sequential (e.g., greed and iterative varieties. Some relevant algorithms will be reviewed in Section Section 2.1. Recentl, a different approach to solving this problem has emerged from the field of deep learning, whereb a neural network with man laers is trained using a set of D examples 2 1 This work was supported b the NSF I/UCRC grant IIP Since orthonormal Ψ implies x = Ψ H s, training examples of the form {( (d,s (d } can be converted to {( (d,x (d } D d=1 via x(d = Ψ H s (d. {( (d,x (d } D d=1. Once trained, the network can be used to predict the sparse x that corresponds to a given input. Note that knowledge of the operator A is not necessar here. Previous work (e.g., [3 6] has shown that the deep-learning approach to solving sparse linear inverse problems has the potential to offer significant improvements, in both accurac and complexit, over the traditional algorithmic approach. Relation to prior work: In this paper, we show how recent advances in iterative reconstruction algorithms suggest modifications to traditional neural-network architectures that ield improved accurac and complexit when solving sparse linear inverse problems. In particular, we show how Onsager correction, which lies at the heart of the approximate message passing (AP algorithm [7], can be emploed to construct deep networks with increased accurac and computational efficienc (i.e., fewer laers needed to produce an accurate estimate. To our knowledge, the application of Onsager correction to deep neural networks is novel. 2. ITERATIVE ALGORITHS AND DEEP LEARNING 2.1. Iterative Algorithms One of the best known algorithmic approaches to solving the sparse linear inverse problem is through solving the convex optimization problem [8, 9] 1 x = argmin x 2 Ax 2 2 +λ x 1, (3 where λ > is a tunable parameter that controls the tradeoff between sparsit and measurement fidelit in x. The convexit of (3 leads to provabl convergent algorithms and bounds on the performance of the estimate x (see, e.g., [1] ISTA One of the simplest approaches to solving (3 is the iterative softthresholding algorithm (ISTA [11], which consists of iterating the steps (for t =,1,2,... and x = v t = A x t x t+1 = η ( x t +βa H v t;λ, (4a (4b where β (,1/ A 2 2] is a stepsize, v t is the iteration-t residual measurement error, and η( ;λ : C N C N is the soft thresholding denoiser that operates componentwise as: [η(r;λ] j = sgn(r jmax{ r j λ,}. (5

2 FISTA Although ISTA is guaranteed to converge under β (,1/ A 2 2 [12], it converges somewhat slowl and so man modifications have been proposed to speed it up. Among the most famous is fast ISTA (FISTA [13], v t = A x t (6a x t+1 = η ( x t +βa H v t + t 2 t+1 ( xt xt 1;λ, (6b which converges in roughl an order-of-magnitude fewer iterations than ISTA (see Fig. 1. average NSE [db] ISTA FISTA AP AP Recentl, the approximate message passing (AP algorithm [7, 14] was applied to (3, giving v t = A x t +b tv t 1 x t+1 = η ( x t +A H v t;λ t, for x =, v 1 =, t =,1,2,..., and (7a (7b b t = 1 xt (8 λ t = α v t 2. (9 Here, α is a tuning parameter that has a one-to-one correspondence with λ in (3 [14]. Comparing AP to ISTA, we see two major differences: i AP s residual v t in (7a includes the Onsager correction term b tv t 1, and ii AP s denoising threshold λ t in (7b takes the prescribed, t-dependent value (9. We now describe the rationale behind these differences. When A is a tpical realization of a large i.i.d. (subgaussian random matrix with entries of variance 1, the Onsager correction decouples the AP iterations in the sense that the input to the denoiser, r t x t +A H v t, can be modeled as 3 r t = x+n(,σ 2 ti N with σ 2 t = 1 vt 2 2. (1 In other words, the Onsager correction ensures that the denoiser input is an additive white Gaussian noise (AWGN corrupted version of the true signal x with known AWGN variance σt 2. (See Fig. 5. The resulting problem, known as denoising, is well understood. For example, for an independent known priorp(x = N j=1 pj(xj, the mean-squared error (SE-optimal denoiser 4 is simpl the posterior mean estimator (i.e., x t+1,j = E{x j r t,j;σ t}, which can be computed in closed form for man p j(. In the more realistic case that p j( are unknown, we ma be more interested in the minimax denoiser, i.e., minimizer of the maximum SE over an assumed famil of priors. Remarkabl, for sparse priors, i.e.,p j(x j = (1 γδ(x j+γ p j(x j withγ (,1 and arbitrar unknown p j(, soft-thresholding (5 with a threshold proportional to the AWGN standard deviation (i.e., λ t = ασ t as in (9 is nearl minimax optimal [14]. Thus, we can interpret the AP algorithm (7 as a nearl minimax approach to the sparse linear inverse problem. 3 The AP model (1 is provabl accurate in the large-sstem limit (i.e.,, N with /N converging to a fixed positive constant [15]. 4 AP with SE-optimal denoising was first described in [16] iterations Fig. 1. Average NSE versus iteration number for AP, FISTA, ISTA (from left to right Comparison of ISTA, FISTA, and AP We now compare the average per-iteration behavior of ISTA, FISTA, and AP for an A drawn i.i.d. N(, 1. In our experiment, all quantities were real-valued, the problem dimensions were N = 5 and = 25, the elements of x were drawn i.i.d. N(,1 with probabilit γ =.1 and were otherwise set to zero, and the noise n was drawn i.i.d. N(, v with v set to ield a signal-to-noise ratio (SNR of 4 db. Recall that ISTA, FISTA, and AP all estimate x b iterativel minimizing (3 for a chosen value of λ (selected via α in the case of AP. We chose the minimax optimal value of α for AP (which is since γ =.1 [14] and used the corresponding λ for ISTA and FISTA. Figure 1 shows the average normalized SE (NSE versus iterationt, where NSE x t x 2 2/ x 2 2 and 1 realizations of (x,n were averaged. We see that AP requires roughl an order-of-magnitude fewer iterations than FISTA, which requires roughl an order-of-magnitude fewer iterations than ISTA Deep Learning In deep learning [17], training data {( (d,x (d } D d=1 composed of (feature,label pairs are used to train the parameters of a deep neural network with the goal of accuratel predicting the label x of a test feature. The deep network acceptsand subjects it to man laers of processing, where each laer consists of a linear transformation followed b a non-linearit. Tpicall, the label space is discrete (e.g., is an image and x is its class in {cat, dog,..., tree}. In our sparse linear inverse problem, however, the labels x are continuous and high-dimensional (e.g., C N or R N. Remarkabl, Gregor and LeCun demonstrated in [3] that a well-constructed deep network can accuratel predict even labels such as ours. The neural network architecture proposed in [3] is closel related to the ISTA algorithm discussed in Section To understand the relation, we rewrite the ISTA iteration (4 as x t+1 = η ( S x t +B;λ { B βa H with (11 S I N BA and unfold iterations t = 1...T, resulting in the T -laer feedforward neural network shown in Fig. 2. Whereas ISTA uses the

3 B η S + η S + η S + η x x 1 x 2 x 4 3 Fig. 2. The feed-forward neural network constructed b unfolding T =4 iterations of ISTA. values of S and B prescribed in (11 and a common value of λ at all laers, Gregor and LeCun [3] proposed to use laer-dependent thresholds λ [λ 1,λ 2,...,λ T] and learn both the thresholds λ and the matrices B,S from the training data {( (d,x (d } D d=1 b minimizing the quadratic loss L T(Θ = 1 D D x T( (d ;Θ x (d 2. (12 2 d=1 Here, Θ = [B,S,λ] denotes the set of learnable parameters and x T( (d ;Θ the output of the T -laer network with input (d and parameters Θ. The resulting approach was coined learned ISTA (LISTA. Relative to existing algorithms for the sparse linear inverse problem with optimall tuned regularization parameters (e.g., λ or α, LISTA generates estimates of comparable SE with significantl fewer matrix-vector multiplications. As an example, for the problem described in Section 2.1.4, LISTA took onl 16 laers to reach an NSE of 35 db, whereas AP took 25 iterations. (ore details will be given in Section 4. Other authors have also applied ideas from deep learning to the sparse linear inverse problem. For example, [4] extended the approach from [3] to handle structured sparsit and dictionar learning (when the training data are { (d } D d=1 and A is unknown. ore recentl, [6] extended [3] from the l 2+l 1 objective of (3 to the l 2+l objective, and [5] proposed to learn the SE-optimal scalar denoising function η b learning the parameters of a B-spline. The idea of unfolding an iterative algorithm and learning its parameters via training data has also been used to recover non-sparse signals. For example, it has been applied to speech enhancement [18], image deblurring [19], image super resolution [2], compressive imaging [21, 22], and video compressive sensing [23]. 3. LEARNED AP Recall that LISTA involves learning the matrix S I N BA, where B C N and A C N. As noted in [3], when < N/2, it is advantageous to leverage the I N BA structure of S, leading to network laers of the form shown in Fig. 3, with firstlaer inputs x = and v =. Although not considered in [3], the network in Fig. 3 allows both A and B to var with the laer t, allowing for modest improvement (as will be demonstrated in Section The LAP Network We propose to construct a neural network from unfolded AP (7 with tunable parameters {A t,b t,α t} T 1 t= learned from training data. The hope is that a learned AP (LAP will require fewer laers than LISTA, just as AP tpicall requires man fewer iterations than ISTA to converge. Figure 4 shows one laer of the LAP network. Comparing Fig. 4 to Fig. 3, we see two main differences: x t + r η( ;λ x t+1 t t v t + v t+1 B t Fig. 3. Thetth laer of the LISTA network, with tunable parameters {A t,b t,λ t} T 1 t=. x t + r t x η( ; t+1 αt 2 v t λ t + + v t+1 B t b t+1 Fig. 4. The tth laer of the LAP network, with tunable parameters {A t,b t,α t} T 1 t= 1. LAP includes a feed-forward path from v t to v t 1 that is not present in LISTA. This path implements an Onsager correction whose goal is to decouple the laers of the network, just as it decoupled the iterations of the AP algorithm (recall Section LAP s denoiser threshold λ t = α t v t 2/ varies with the realizationv t, whereas LISTA s is constant. Note that LAP is built on a generalization of the AP algorithm (7 wherein the matrices (A,A H manifest as (A t,b t at iteration t. An important question is whether this generalization preserves the independent-gaussian nature (1 of the denoiser input error the ke feature of AP. It can be shown that the desired behavior does occur when i A t = β ta with scalar β t and ii B t = A H C t with appropriatel scaled C t. Thus, for LAP, we impose 5 A t = β ta and learn onl β t, and we initialize B t appropriatel before learning. From Fig. 4, we see that the β t scaling withina t can be moved to the denoiser η( ; under a suitable re-definition of x t, and we take this approach in LAP. Thus, the tth laer of LAP can be summarized as x t+1 = β ( x α tη t +B tv t; t v t 2 (13a A t A t v t+1 = A x t+1 + βt xt+1 vt, (13b with first-laer inputs x = and v =. Figure 5(c shows the QQplot of LAP s denoiser input error ( x t + B tv t x. The shape of the plot confirms that the error is Gaussian Learning The LAP Parameters Our proposed learning procedure is described below, where it is assumed that A is known. But if A was unknown, it could be estimated using a least-squares fit to the training data. Empiricall, we find that there is essentiall no difference in final test SE between LAP networks where i A is known, ii A is estimated via leastsquares, or iiiais learned using back-propagation to minimize the loss L T from ( Tied{B t} In the tied case, B t = B t, and so the adjustable parameters are Θ = [ ] B,{α t} T 1 t=,{βt}t 1 t=. We proposed to learn Θ b 5 Here A refers to the true measurement matrix from (2. If A is unknown, it can be learned from the training data as described in Section 3.2.

4 (a ISTA (b AP (c LAP Fig. 5. QQplots of the denoiser input error evaluated at the first iteration t for which NSE( x t < 15 db. Note ISTA s error is heav tailed while AP s and LAP s errors are Gaussian due to Onsager correction. starting with a 1-laer network and growing it one laer at a time. For the first laer (i.e., t =, we initialize B as the regularized pseudo-inverse average NSE [db] LISTA tied LISTA untied LAP tied LAP untied laers Fig. 6. Test NSE versus laer for i.i.d. Gaussian A. B = γ 1 A H( AA H +I 1, (14 with γ chosen so that tr(ab = N, and we use backpropagation to learn the values of α,β that minimize the loss L from (12. Then, for each new laer t = 1,...,T 1, we 1. initializeb,α t,β t at the values from laer t 1, 2. optimize α t,β t alone using backpropagation, and 3. re-optimize all parameters B,{α i} t i=,{β i} t i= using backpropagation to minimize the loss L t from ( Untied {B t} In the untied case, B t is allowed to var across laers t. We propose the same learning procedure as above, but with one exception: when initializing the parameters for each new laer, we initializeb t at the regularized pseudo-inverse (14 rather than the learned value B t Structured B t otivated b the <N case, we recommend constraining B t = A H C t and learning onl C t C, which reduces the number of free parameters in B t from N to 2. After these B t are learned, there is no need to represent them in factored form, although doing so ma be advantageous if A has a fast implementation (e.g., FFT. Empiricall, we find that there is essentiall no difference in final test SE between LAP networks where ib t is unconstrained and ii B t = A H C t. However, the learning procedure is more efficient in the latter case. 4. NUERICAL RESULTS We now evaluate the performance of LISTA and LAP on the sparse linear inverse problem described in Section The data were generated as described in Section 2.1.4, with training mini-batches of sized=1 and a single testing mini-batch of size1 (drawn independentl of the training data. The training and testing methods were implemented in Pthon using TensorFlow [24] with the ADA optimizer [25]. For LAP, we performed the learning as described in Section 3.2. For LISTA, we used the same approach to learn untied [ B,S,{λ t} T 1 t= ] and tied {Bt,S t,λ t} T 1 t=, with no constraints ons t orb t (because we found that adding constraints degraded performance. average NSE [db] LISTA tied LISTA untied LAP tied LAP untied laers Fig. 7. Test NSE versus laer for A with condition number 15. Figure 6 shows average test NSE x t x 2 2/ x 2 versus laer t for the same i.i.d. Gaussian A and test data used to create Fig. 1, allowing a direct comparison. The figure shows LAP significantl outperforming LISTA and AP in convergence time and final NSE. For example, to reach 34 db NSE, tied-lap took onl7laers, tied-lista took15, and AP took 23. Figure 7 shows the results of a similar experiment, but where the singular values ofawere replaced b a geometric sequence that ielded A 2 F = N and a condition-number of15. For thisa, AP diverged but LAP did not, due in part to the preconditioning effect of (14. The figures also show that the untied versions of LAP and LISTA ielded small improvements over the tied versions, but at the cost of a T -fold increase in parameter storage plus significantl increased training time. 5. CONCLUSION We considered the application of deep learning to the sparse linear inverse problem. otivated b the AP algorithm, we proposed the use of Onsager correction in deep neural networks, for the purpose of decoupling and Gaussianizing errors across laers. Empirical results demonstrated improved accurac and efficienc over Gregor and LeCun s LISTA [3].

5 6. REFERENCES [1] Y. C. Eldar and G. Kutniok, Compressed Sensing: Theor and Applications. New York: Cambridge Univ. Press, 212. [2] B. A. Olshausen and D. J. Field, Sparse coding with an overcomplete basis set: A strateg emploed b v1, Vision Research, vol. 37, pp , [3] K. Gregor and Y. LeCun, Learning fast approximations of sparse coding, in Proc. Int. Conf. ach. Learning, pp , 21. [4] P. Sprechmann, P. Bronstein, and G. Sapiro, Learning efficient structured-sparse models, in Proc. Int. Conf. ach. Learning, pp , 212. [5] U. Kamilov and H. ansour, Learning optimal nonlinearities for iterative thresholding algorithms, IEEE Signal Process. Lett., vol. 23, pp , a 216. [6] Z. Wang, Q. Ling, and T. S. Huang, Learning deep l encoders, in Proc. AAAI Conf. Artificial Intell., pp , 216. [7] D. L. Donoho, A. aleki, and A. ontanari, essage passing algorithms for compressed sensing, Proc. Nat. Acad. Sci., vol. 16, pp , Nov. 29. [8] R. Tibshirani, Regression shrinkage and selection via the lasso, J. Ro. Statist. Soc. B, vol. 58, no. 1, pp , [9] S. S. Chen, D. L. Donoho, and. A. Saunders, Atomic decomposition b basis pursuit, SIA J. Scientific Comput., vol. 2, no. 1, pp , [1] E. Candès, J. Romberg, and T. Tao, Stable signal recover from incomplete and inaccurate measurements, Communications on Pure and Applied athematics, vol. 59, no. 8, pp , 26. [11] A. Chambolle, R. A. DeVore, N. Lee, and B. J. Lucier, Nonlinear wavelet image processing: Variational problems, compression, and noise removal through wavelet shrinkage, IEEE Trans. Image Process., vol. 7, pp , ar [12] I. Daubechies,. Defrise, and C. D. ol, An iterative thresholding algorithm for linear inverse problems with a sparsit constraint,, Commun. Pure & Appl. ath., vol. 57, pp , Nov. 24. [13] A. Beck and. Teboulle, A fast iterative shrinkagethresholding algorithm for linear inverse problems, SIA J. Imag. Sci., vol. 2, no. 1, pp , 29. [14] A. ontanari, Graphical models concepts in compressed sensing, in Compressed Sensing: Theor and Applications (Y. C. Eldar and G. Kutniok, eds., Cambridge Univ. Press, 212. [15]. Baati and A. ontanari, The dnamics of message passing on dense graphs, with applications to compressed sensing, IEEE Trans. Inform. Theor, vol. 57, pp , Feb [16] D. L. Donoho, A. aleki, and A. ontanari, essage passing algorithms for compressed sensing: I. otivation and construction, in Proc. Inform. Theor Workshop, (Cairo, Egpt, pp. 1 5, Jan. 21. [17] I. Goodfellow, Y. Bengio, and A. Courville, Deep Learning. IT Press, 216. [18] J. R. Hershe, J. Le Roux, and F. Weninger, Deep unfolding: odel-based inspiration of novel deep architectures, Tech. Rep. TR , itsubishi Electric Research Labs, 214. (See also arxiv: [19] U. Schmidt and S. Roth, Shrinkage fields for effective image restoration, in Proc. IEEE Conf. Comp. Vision Pattern Recog., pp , 214. [2] C. Dong, C. C. Lo, K. He, and X. Tang, Image superresolution using deep convolutional networks, IEEE Trans. Pattern Anal. ach. Intell., vol. 38, pp , Feb [21] A. ousavi, A. Patel, and R. Baraniuk, A deep learning approach to structured signal recover, in Proc. Allerton Conf. Commun. Control Comput., pp , 215. [22] K. Kulkarni, S. Lohi, P. Turaga, R. Kerviche, and A. Ashok, ReconNet: Non-iterative reconstruction of images from compressivel sensed random measurements, in Proc. IEEE Conf. Comp. Vision Pattern Recog., 216. (see also arxiv: [23]. Iliadis, L. Spinoulas, and A. K. Katsaggelos, Deep full-connected networks for video compressive sensing, in arxiv:163:493, 216. [24]. Abadi, A. Agarwal, P. Barham, et al., TensorFlow: Largescale machine learning on heterogeneous sstems, 215. Software available from tensorflow.org. [25] D. P. Kingma and J. Ba, Adam: A method for stochastic optimization, in Proc. Internat. Conf. on Learning Repres., 215. (see also arxiv:

AMP-Inspired Deep Networks for Sparse Linear Inverse Problems

AMP-Inspired Deep Networks for Sparse Linear Inverse Problems 1 AMP-Inspired Deep Networks for Sparse Linear Inverse Problems Mark Borgerding, Philip Schniter, and Sundeep Rangan arxiv:1612.01183v2 [cs.it] 19 May 2017 Abstract Deep learning has gained great popularity

More information

Learning MMSE Optimal Thresholds for FISTA

Learning MMSE Optimal Thresholds for FISTA MITSUBISHI ELECTRIC RESEARCH LABORATORIES http://www.merl.com Learning MMSE Optimal Thresholds for FISTA Kamilov, U.; Mansour, H. TR2016-111 August 2016 Abstract Fast iterative shrinkage/thresholding algorithm

More information

Phil Schniter. Supported in part by NSF grants IIP , CCF , and CCF

Phil Schniter. Supported in part by NSF grants IIP , CCF , and CCF AMP-inspired Deep Networks, with Comms Applications Phil Schniter Collaborators: Sundeep Rangan (NYU), Alyson Fletcher (UCLA), Mark Borgerding (OSU) Supported in part by NSF grants IIP-1539960, CCF-1527162,

More information

DNNs for Sparse Coding and Dictionary Learning

DNNs for Sparse Coding and Dictionary Learning DNNs for Sparse Coding and Dictionary Learning Subhadip Mukherjee, Debabrata Mahapatra, and Chandra Sekhar Seelamantula Department of Electrical Engineering, Indian Institute of Science, Bangalore 5612,

More information

Approximate Message Passing Algorithms

Approximate Message Passing Algorithms November 4, 2017 Outline AMP (Donoho et al., 2009, 2010a) Motivations Derivations from a message-passing perspective Limitations Extensions Generalized Approximate Message Passing (GAMP) (Rangan, 2011)

More information

arxiv: v1 [stat.ml] 22 Nov 2016

arxiv: v1 [stat.ml] 22 Nov 2016 Interpretable Recurrent Neural Networks Using Sequential Sparse Recovery arxiv:1611.07252v1 [stat.ml] 22 Nov 2016 Scott Wisdom 1, Thomas Powers 1, James Pitton 1,2, and Les Atlas 1 1 Department of Electrical

More information

MMSE Denoising of 2-D Signals Using Consistent Cycle Spinning Algorithm

MMSE Denoising of 2-D Signals Using Consistent Cycle Spinning Algorithm Denoising of 2-D Signals Using Consistent Cycle Spinning Algorithm Bodduluri Asha, B. Leela kumari Abstract: It is well known that in a real world signals do not exist without noise, which may be negligible

More information

Message Passing Algorithms for Compressed Sensing: II. Analysis and Validation

Message Passing Algorithms for Compressed Sensing: II. Analysis and Validation Message Passing Algorithms for Compressed Sensing: II. Analysis and Validation David L. Donoho Department of Statistics Arian Maleki Department of Electrical Engineering Andrea Montanari Department of

More information

Minimizing Isotropic Total Variation without Subiterations

Minimizing Isotropic Total Variation without Subiterations MITSUBISHI ELECTRIC RESEARCH LABORATORIES http://www.merl.com Minimizing Isotropic Total Variation without Subiterations Kamilov, U. S. TR206-09 August 206 Abstract Total variation (TV) is one of the most

More information

Near Ideal Behavior of a Modified Elastic Net Algorithm in Compressed Sensing

Near Ideal Behavior of a Modified Elastic Net Algorithm in Compressed Sensing Near Ideal Behavior of a Modified Elastic Net Algorithm in Compressed Sensing M. Vidyasagar Cecil & Ida Green Chair The University of Texas at Dallas M.Vidyasagar@utdallas.edu www.utdallas.edu/ m.vidyasagar

More information

arxiv: v1 [cs.it] 21 Feb 2013

arxiv: v1 [cs.it] 21 Feb 2013 q-ary Compressive Sensing arxiv:30.568v [cs.it] Feb 03 Youssef Mroueh,, Lorenzo Rosasco, CBCL, CSAIL, Massachusetts Institute of Technology LCSL, Istituto Italiano di Tecnologia and IIT@MIT lab, Istituto

More information

TRADEOFFS BETWEEN SPEED AND ACCURACY IN INVERSE PROBLEMS RAJA GIRYES TEL AVIV UNIVERSITY

TRADEOFFS BETWEEN SPEED AND ACCURACY IN INVERSE PROBLEMS RAJA GIRYES TEL AVIV UNIVERSITY TRADEOFFS BETWEEN SPEED AND ACCURACY IN INVERSE PROBLEMS RAJA GIRYES TEL AVIV UNIVERSITY Deep Learning TCE Conference June 14, 2018 DEEP LEARNING IMPACT Today we get 3.5% by 152 layers Imagenet dataset

More information

SOLVING LINEAR INVERSE PROBLEMS USING GAN PRIORS: AN ALGORITHM WITH PROVABLE GUARANTEES. Viraj Shah and Chinmay Hegde

SOLVING LINEAR INVERSE PROBLEMS USING GAN PRIORS: AN ALGORITHM WITH PROVABLE GUARANTEES. Viraj Shah and Chinmay Hegde SOLVING LINEAR INVERSE PROBLEMS USING GAN PRIORS: AN ALGORITHM WITH PROVABLE GUARANTEES Viraj Shah and Chinmay Hegde ECpE Department, Iowa State University, Ames, IA, 5000 In this paper, we propose and

More information

Approximate Message Passing with Built-in Parameter Estimation for Sparse Signal Recovery

Approximate Message Passing with Built-in Parameter Estimation for Sparse Signal Recovery Approimate Message Passing with Built-in Parameter Estimation for Sparse Signal Recovery arxiv:1606.00901v1 [cs.it] Jun 016 Shuai Huang, Trac D. Tran Department of Electrical and Computer Engineering Johns

More information

A new method on deterministic construction of the measurement matrix in compressed sensing

A new method on deterministic construction of the measurement matrix in compressed sensing A new method on deterministic construction of the measurement matrix in compressed sensing Qun Mo 1 arxiv:1503.01250v1 [cs.it] 4 Mar 2015 Abstract Construction on the measurement matrix A is a central

More information

Compressed Sensing and Neural Networks

Compressed Sensing and Neural Networks and Jan Vybíral (Charles University & Czech Technical University Prague, Czech Republic) NOMAD Summer Berlin, September 25-29, 2017 1 / 31 Outline Lasso & Introduction Notation Training the network Applications

More information

of Orthogonal Matching Pursuit

of Orthogonal Matching Pursuit A Sharp Restricted Isometry Constant Bound of Orthogonal Matching Pursuit Qun Mo arxiv:50.0708v [cs.it] 8 Jan 205 Abstract We shall show that if the restricted isometry constant (RIC) δ s+ (A) of the measurement

More information

Vector Approximate Message Passing. Phil Schniter

Vector Approximate Message Passing. Phil Schniter Vector Approximate Message Passing Phil Schniter Collaborators: Sundeep Rangan (NYU), Alyson Fletcher (UCLA) Supported in part by NSF grant CCF-1527162. itwist @ Aalborg University Aug 24, 2016 Standard

More information

Sparse Solutions of an Undetermined Linear System

Sparse Solutions of an Undetermined Linear System 1 Sparse Solutions of an Undetermined Linear System Maddullah Almerdasy New York University Tandon School of Engineering arxiv:1702.07096v1 [math.oc] 23 Feb 2017 Abstract This work proposes a research

More information

Compressive Sensing under Matrix Uncertainties: An Approximate Message Passing Approach

Compressive Sensing under Matrix Uncertainties: An Approximate Message Passing Approach Compressive Sensing under Matrix Uncertainties: An Approximate Message Passing Approach Asilomar 2011 Jason T. Parker (AFRL/RYAP) Philip Schniter (OSU) Volkan Cevher (EPFL) Problem Statement Traditional

More information

Perturbation Theory for Variational Inference

Perturbation Theory for Variational Inference Perturbation heor for Variational Inference Manfred Opper U Berlin Marco Fraccaro echnical Universit of Denmark Ulrich Paquet Apple Ale Susemihl U Berlin Ole Winther echnical Universit of Denmark Abstract

More information

SPARSE SIGNAL RESTORATION. 1. Introduction

SPARSE SIGNAL RESTORATION. 1. Introduction SPARSE SIGNAL RESTORATION IVAN W. SELESNICK 1. Introduction These notes describe an approach for the restoration of degraded signals using sparsity. This approach, which has become quite popular, is useful

More information

IEEE SIGNAL PROCESSING LETTERS, VOL. 22, NO. 9, SEPTEMBER

IEEE SIGNAL PROCESSING LETTERS, VOL. 22, NO. 9, SEPTEMBER IEEE SIGNAL PROCESSING LETTERS, VOL. 22, NO. 9, SEPTEMBER 2015 1239 Preconditioning for Underdetermined Linear Systems with Sparse Solutions Evaggelia Tsiligianni, StudentMember,IEEE, Lisimachos P. Kondi,

More information

Thresholds for the Recovery of Sparse Solutions via L1 Minimization

Thresholds for the Recovery of Sparse Solutions via L1 Minimization Thresholds for the Recovery of Sparse Solutions via L Minimization David L. Donoho Department of Statistics Stanford University 39 Serra Mall, Sequoia Hall Stanford, CA 9435-465 Email: donoho@stanford.edu

More information

Deep MIMO Detection. Neev Samuel, Tzvi Diskin and Ami Wiesel

Deep MIMO Detection. Neev Samuel, Tzvi Diskin and Ami Wiesel Deep MIMO Detection Neev Samuel, Tzvi Diskin and Ami Wiesel School of Computer Science and Engineering The Hebrew University of Jerusalem The Edmond J. Safra Campus 9190416 Jerusalem, Israel arxiv:1706.01151v1

More information

Compressed sensing. Or: the equation Ax = b, revisited. Terence Tao. Mahler Lecture Series. University of California, Los Angeles

Compressed sensing. Or: the equation Ax = b, revisited. Terence Tao. Mahler Lecture Series. University of California, Los Angeles Or: the equation Ax = b, revisited University of California, Los Angeles Mahler Lecture Series Acquiring signals Many types of real-world signals (e.g. sound, images, video) can be viewed as an n-dimensional

More information

The Deep Ritz method: A deep learning-based numerical algorithm for solving variational problems

The Deep Ritz method: A deep learning-based numerical algorithm for solving variational problems The Deep Ritz method: A deep learning-based numerical algorithm for solving variational problems Weinan E 1 and Bing Yu 2 arxiv:1710.00211v1 [cs.lg] 30 Sep 2017 1 The Beijing Institute of Big Data Research,

More information

Rigorous Dynamics and Consistent Estimation in Arbitrarily Conditioned Linear Systems

Rigorous Dynamics and Consistent Estimation in Arbitrarily Conditioned Linear Systems 1 Rigorous Dynamics and Consistent Estimation in Arbitrarily Conditioned Linear Systems Alyson K. Fletcher, Mojtaba Sahraee-Ardakan, Philip Schniter, and Sundeep Rangan Abstract arxiv:1706.06054v1 cs.it

More information

Sparsity Regularization

Sparsity Regularization Sparsity Regularization Bangti Jin Course Inverse Problems & Imaging 1 / 41 Outline 1 Motivation: sparsity? 2 Mathematical preliminaries 3 l 1 solvers 2 / 41 problem setup finite-dimensional formulation

More information

Fast Angular Synchronization for Phase Retrieval via Incomplete Information

Fast Angular Synchronization for Phase Retrieval via Incomplete Information Fast Angular Synchronization for Phase Retrieval via Incomplete Information Aditya Viswanathan a and Mark Iwen b a Department of Mathematics, Michigan State University; b Department of Mathematics & Department

More information

Reconstruction from Anisotropic Random Measurements

Reconstruction from Anisotropic Random Measurements Reconstruction from Anisotropic Random Measurements Mark Rudelson and Shuheng Zhou The University of Michigan, Ann Arbor Coding, Complexity, and Sparsity Workshop, 013 Ann Arbor, Michigan August 7, 013

More information

Compressed Least-Squares Regression on Sparse Spaces

Compressed Least-Squares Regression on Sparse Spaces Proceedings of the Twenty-Sixth AAAI Conference on Artificial Intelligence Compressed Least-Squares Regression on Sparse Spaces Mahdi Milani Fard, Yuri Grinberg, Joelle Pineau, Doina Precup School of Computer

More information

Orthogonal Matching Pursuit for Sparse Signal Recovery With Noise

Orthogonal Matching Pursuit for Sparse Signal Recovery With Noise Orthogonal Matching Pursuit for Sparse Signal Recovery With Noise The MIT Faculty has made this article openly available. Please share how this access benefits you. Your story matters. Citation As Published

More information

A NEW FRAMEWORK FOR DESIGNING INCOHERENT SPARSIFYING DICTIONARIES

A NEW FRAMEWORK FOR DESIGNING INCOHERENT SPARSIFYING DICTIONARIES A NEW FRAMEWORK FOR DESIGNING INCOERENT SPARSIFYING DICTIONARIES Gang Li, Zhihui Zhu, 2 uang Bai, 3 and Aihua Yu 3 School of Automation & EE, Zhejiang Univ. of Sci. & Tech., angzhou, Zhejiang, P.R. China

More information

Learned D-AMP: Principled Neural Network Based Compressive Image Recovery

Learned D-AMP: Principled Neural Network Based Compressive Image Recovery Learned D-AMP: Principled Neural Network Based Compressive Image Recovery Christopher A. Metzler Rice University chris.metzler@rice.edu Ali Mousavi Rice University ali.mousavi@rice.edu Richard G. Baraniuk

More information

Accelerated Dual Gradient-Based Methods for Total Variation Image Denoising/Deblurring Problems (and other Inverse Problems)

Accelerated Dual Gradient-Based Methods for Total Variation Image Denoising/Deblurring Problems (and other Inverse Problems) Accelerated Dual Gradient-Based Methods for Total Variation Image Denoising/Deblurring Problems (and other Inverse Problems) Donghwan Kim and Jeffrey A. Fessler EECS Department, University of Michigan

More information

Generalized Orthogonal Matching Pursuit- A Review and Some

Generalized Orthogonal Matching Pursuit- A Review and Some Generalized Orthogonal Matching Pursuit- A Review and Some New Results Department of Electronics and Electrical Communication Engineering Indian Institute of Technology, Kharagpur, INDIA Table of Contents

More information

ROBUST BLIND SPIKES DECONVOLUTION. Yuejie Chi. Department of ECE and Department of BMI The Ohio State University, Columbus, Ohio 43210

ROBUST BLIND SPIKES DECONVOLUTION. Yuejie Chi. Department of ECE and Department of BMI The Ohio State University, Columbus, Ohio 43210 ROBUST BLIND SPIKES DECONVOLUTION Yuejie Chi Department of ECE and Department of BMI The Ohio State University, Columbus, Ohio 4 ABSTRACT Blind spikes deconvolution, or blind super-resolution, deals with

More information

Recent developments on sparse representation

Recent developments on sparse representation Recent developments on sparse representation Zeng Tieyong Department of Mathematics, Hong Kong Baptist University Email: zeng@hkbu.edu.hk Hong Kong Baptist University Dec. 8, 2008 First Previous Next Last

More information

Statistical Image Recovery: A Message-Passing Perspective. Phil Schniter

Statistical Image Recovery: A Message-Passing Perspective. Phil Schniter Statistical Image Recovery: A Message-Passing Perspective Phil Schniter Collaborators: Sundeep Rangan (NYU) and Alyson Fletcher (UC Santa Cruz) Supported in part by NSF grants CCF-1018368 and NSF grant

More information

Pre-weighted Matching Pursuit Algorithms for Sparse Recovery

Pre-weighted Matching Pursuit Algorithms for Sparse Recovery Journal of Information & Computational Science 11:9 (214) 2933 2939 June 1, 214 Available at http://www.joics.com Pre-weighted Matching Pursuit Algorithms for Sparse Recovery Jingfei He, Guiling Sun, Jie

More information

Stopping Condition for Greedy Block Sparse Signal Recovery

Stopping Condition for Greedy Block Sparse Signal Recovery Stopping Condition for Greedy Block Sparse Signal Recovery Yu Luo, Ronggui Xie, Huarui Yin, and Weidong Wang Department of Electronics Engineering and Information Science, University of Science and Technology

More information

Optimization methods

Optimization methods Lecture notes 3 February 8, 016 1 Introduction Optimization methods In these notes we provide an overview of a selection of optimization methods. We focus on methods which rely on first-order information,

More information

1-Bit Compressive Sensing

1-Bit Compressive Sensing 1-Bit Compressive Sensing Petros T. Boufounos, Richard G. Baraniuk Rice University, Electrical and Computer Engineering 61 Main St. MS 38, Houston, TX 775 Abstract Compressive sensing is a new signal acquisition

More information

WHY ARE DEEP NETS REVERSIBLE: A SIMPLE THEORY,

WHY ARE DEEP NETS REVERSIBLE: A SIMPLE THEORY, WHY ARE DEEP NETS REVERSIBLE: A SIMPLE THEORY, WITH IMPLICATIONS FOR TRAINING Sanjeev Arora, Yingyu Liang & Tengyu Ma Department of Computer Science Princeton University Princeton, NJ 08540, USA {arora,yingyul,tengyu}@cs.princeton.edu

More information

An Introduction to Sparse Approximation

An Introduction to Sparse Approximation An Introduction to Sparse Approximation Anna C. Gilbert Department of Mathematics University of Michigan Basic image/signal/data compression: transform coding Approximate signals sparsely Compress images,

More information

Backpropagation Rules for Sparse Coding (Task-Driven Dictionary Learning)

Backpropagation Rules for Sparse Coding (Task-Driven Dictionary Learning) Backpropagation Rules for Sparse Coding (Task-Driven Dictionary Learning) Julien Mairal UC Berkeley Edinburgh, ICML, June 2012 Julien Mairal, UC Berkeley Backpropagation Rules for Sparse Coding 1/57 Other

More information

ECE G: Special Topics in Signal Processing: Sparsity, Structure, and Inference

ECE G: Special Topics in Signal Processing: Sparsity, Structure, and Inference ECE 18-898G: Special Topics in Signal Processing: Sparsity, Structure, and Inference Sparse Recovery using L1 minimization - algorithms Yuejie Chi Department of Electrical and Computer Engineering Spring

More information

AN INTRODUCTION TO COMPRESSIVE SENSING

AN INTRODUCTION TO COMPRESSIVE SENSING AN INTRODUCTION TO COMPRESSIVE SENSING Rodrigo B. Platte School of Mathematical and Statistical Sciences APM/EEE598 Reverse Engineering of Complex Dynamical Networks OUTLINE 1 INTRODUCTION 2 INCOHERENCE

More information

arxiv: v1 [cs.it] 26 Oct 2018

arxiv: v1 [cs.it] 26 Oct 2018 Outlier Detection using Generative Models with Theoretical Performance Guarantees arxiv:1810.11335v1 [cs.it] 6 Oct 018 Jirong Yi Anh Duc Le Tianming Wang Xiaodong Wu Weiyu Xu October 9, 018 Abstract This

More information

Inverse problems and sparse models (6/6) Rémi Gribonval INRIA Rennes - Bretagne Atlantique, France.

Inverse problems and sparse models (6/6) Rémi Gribonval INRIA Rennes - Bretagne Atlantique, France. Inverse problems and sparse models (6/6) Rémi Gribonval INRIA Rennes - Bretagne Atlantique, France remi.gribonval@inria.fr Overview of the course Introduction sparsity & data compression inverse problems

More information

Course Notes for EE227C (Spring 2018): Convex Optimization and Approximation

Course Notes for EE227C (Spring 2018): Convex Optimization and Approximation Course Notes for EE227C (Spring 2018): Convex Optimization and Approximation Instructor: Moritz Hardt Email: hardt+ee227c@berkeley.edu Graduate Instructor: Max Simchowitz Email: msimchow+ee227c@berkeley.edu

More information

Fast Compressive Phase Retrieval

Fast Compressive Phase Retrieval Fast Compressive Phase Retrieval Aditya Viswanathan Department of Mathematics Michigan State University East Lansing, Michigan 4884 Mar Iwen Department of Mathematics and Department of ECE Michigan State

More information

Fast Hard Thresholding with Nesterov s Gradient Method

Fast Hard Thresholding with Nesterov s Gradient Method Fast Hard Thresholding with Nesterov s Gradient Method Volkan Cevher Idiap Research Institute Ecole Polytechnique Federale de ausanne volkan.cevher@epfl.ch Sina Jafarpour Department of Computer Science

More information

Equivalence Probability and Sparsity of Two Sparse Solutions in Sparse Representation

Equivalence Probability and Sparsity of Two Sparse Solutions in Sparse Representation IEEE TRANSACTIONS ON NEURAL NETWORKS, VOL. 19, NO. 12, DECEMBER 2008 2009 Equivalence Probability and Sparsity of Two Sparse Solutions in Sparse Representation Yuanqing Li, Member, IEEE, Andrzej Cichocki,

More information

A summary of Deep Learning without Poor Local Minima

A summary of Deep Learning without Poor Local Minima A summary of Deep Learning without Poor Local Minima by Kenji Kawaguchi MIT oral presentation at NIPS 2016 Learning Supervised (or Predictive) learning Learn a mapping from inputs x to outputs y, given

More information

Estimation Error Bounds for Frame Denoising

Estimation Error Bounds for Frame Denoising Estimation Error Bounds for Frame Denoising Alyson K. Fletcher and Kannan Ramchandran {alyson,kannanr}@eecs.berkeley.edu Berkeley Audio-Visual Signal Processing and Communication Systems group Department

More information

Sparse Estimation and Dictionary Learning

Sparse Estimation and Dictionary Learning Sparse Estimation and Dictionary Learning (for Biostatistics?) Julien Mairal Biostatistics Seminar, UC Berkeley Julien Mairal Sparse Estimation and Dictionary Learning Methods 1/69 What this talk is about?

More information

Deep learning / Ian Goodfellow, Yoshua Bengio and Aaron Courville. - Cambridge, MA ; London, Spis treści

Deep learning / Ian Goodfellow, Yoshua Bengio and Aaron Courville. - Cambridge, MA ; London, Spis treści Deep learning / Ian Goodfellow, Yoshua Bengio and Aaron Courville. - Cambridge, MA ; London, 2017 Spis treści Website Acknowledgments Notation xiii xv xix 1 Introduction 1 1.1 Who Should Read This Book?

More information

Cheng Soon Ong & Christian Walder. Canberra February June 2018

Cheng Soon Ong & Christian Walder. Canberra February June 2018 Cheng Soon Ong & Christian Walder Research Group and College of Engineering and Computer Science Canberra February June 2018 (Many figures from C. M. Bishop, "Pattern Recognition and ") 1of 254 Part V

More information

Compressive Sensing and Beyond

Compressive Sensing and Beyond Compressive Sensing and Beyond Sohail Bahmani Gerorgia Tech. Signal Processing Compressed Sensing Signal Models Classics: bandlimited The Sampling Theorem Any signal with bandwidth B can be recovered

More information

An Homotopy Algorithm for the Lasso with Online Observations

An Homotopy Algorithm for the Lasso with Online Observations An Homotopy Algorithm for the Lasso with Online Observations Pierre J. Garrigues Department of EECS Redwood Center for Theoretical Neuroscience University of California Berkeley, CA 94720 garrigue@eecs.berkeley.edu

More information

Stable Signal Recovery from Incomplete and Inaccurate Measurements

Stable Signal Recovery from Incomplete and Inaccurate Measurements Stable Signal Recovery from Incomplete and Inaccurate Measurements EMMANUEL J. CANDÈS California Institute of Technology JUSTIN K. ROMBERG California Institute of Technology AND TERENCE TAO University

More information

Compressed Sensing and Linear Codes over Real Numbers

Compressed Sensing and Linear Codes over Real Numbers Compressed Sensing and Linear Codes over Real Numbers Henry D. Pfister (joint with Fan Zhang) Texas A&M University College Station Information Theory and Applications Workshop UC San Diego January 31st,

More information

SUBSPACE CLUSTERING WITH DENSE REPRESENTATIONS. Eva L. Dyer, Christoph Studer, Richard G. Baraniuk

SUBSPACE CLUSTERING WITH DENSE REPRESENTATIONS. Eva L. Dyer, Christoph Studer, Richard G. Baraniuk SUBSPACE CLUSTERING WITH DENSE REPRESENTATIONS Eva L. Dyer, Christoph Studer, Richard G. Baraniuk Rice University; e-mail: {e.dyer, studer, richb@rice.edu} ABSTRACT Unions of subspaces have recently been

More information

OPTIMAL SURE PARAMETERS FOR SIGMOIDAL WAVELET SHRINKAGE

OPTIMAL SURE PARAMETERS FOR SIGMOIDAL WAVELET SHRINKAGE 17th European Signal Processing Conference (EUSIPCO 009) Glasgow, Scotland, August 4-8, 009 OPTIMAL SURE PARAMETERS FOR SIGMOIDAL WAVELET SHRINKAGE Abdourrahmane M. Atto 1, Dominique Pastor, Gregoire Mercier

More information

Linear Methods for Regression. Lijun Zhang

Linear Methods for Regression. Lijun Zhang Linear Methods for Regression Lijun Zhang zlj@nju.edu.cn http://cs.nju.edu.cn/zlj Outline Introduction Linear Regression Models and Least Squares Subset Selection Shrinkage Methods Methods Using Derived

More information

Recovering overcomplete sparse representations from structured sensing

Recovering overcomplete sparse representations from structured sensing Recovering overcomplete sparse representations from structured sensing Deanna Needell Claremont McKenna College Feb. 2015 Support: Alfred P. Sloan Foundation and NSF CAREER #1348721. Joint work with Felix

More information

Optimization methods

Optimization methods Optimization methods Optimization-Based Data Analysis http://www.cims.nyu.edu/~cfgranda/pages/obda_spring16 Carlos Fernandez-Granda /8/016 Introduction Aim: Overview of optimization methods that Tend to

More information

Cheng Soon Ong & Christian Walder. Canberra February June 2018

Cheng Soon Ong & Christian Walder. Canberra February June 2018 Cheng Soon Ong & Christian Walder Research Group and College of Engineering and Computer Science Canberra February June 2018 Outlines Overview Introduction Linear Algebra Probability Linear Regression

More information

Bits of Machine Learning Part 1: Supervised Learning

Bits of Machine Learning Part 1: Supervised Learning Bits of Machine Learning Part 1: Supervised Learning Alexandre Proutiere and Vahan Petrosyan KTH (The Royal Institute of Technology) Outline of the Course 1. Supervised Learning Regression and Classification

More information

EE 381V: Large Scale Optimization Fall Lecture 24 April 11

EE 381V: Large Scale Optimization Fall Lecture 24 April 11 EE 381V: Large Scale Optimization Fall 2012 Lecture 24 April 11 Lecturer: Caramanis & Sanghavi Scribe: Tao Huang 24.1 Review In past classes, we studied the problem of sparsity. Sparsity problem is that

More information

Topographic Dictionary Learning with Structured Sparsity

Topographic Dictionary Learning with Structured Sparsity Topographic Dictionary Learning with Structured Sparsity Julien Mairal 1 Rodolphe Jenatton 2 Guillaume Obozinski 2 Francis Bach 2 1 UC Berkeley 2 INRIA - SIERRA Project-Team San Diego, Wavelets and Sparsity

More information

New Coherence and RIP Analysis for Weak. Orthogonal Matching Pursuit

New Coherence and RIP Analysis for Weak. Orthogonal Matching Pursuit New Coherence and RIP Analysis for Wea 1 Orthogonal Matching Pursuit Mingrui Yang, Member, IEEE, and Fran de Hoog arxiv:1405.3354v1 [cs.it] 14 May 2014 Abstract In this paper we define a new coherence

More information

Inferring Sparsity: Compressed Sensing Using Generalized Restricted Boltzmann Machines. Eric W. Tramel. itwist 2016 Aalborg, DK 24 August 2016

Inferring Sparsity: Compressed Sensing Using Generalized Restricted Boltzmann Machines. Eric W. Tramel. itwist 2016 Aalborg, DK 24 August 2016 Inferring Sparsity: Compressed Sensing Using Generalized Restricted Boltzmann Machines Eric W. Tramel itwist 2016 Aalborg, DK 24 August 2016 Andre MANOEL, Francesco CALTAGIRONE, Marylou GABRIE, Florent

More information

Accelerated large-scale inversion with message passing Felix J. Herrmann, the University of British Columbia, Canada

Accelerated large-scale inversion with message passing Felix J. Herrmann, the University of British Columbia, Canada Accelerated large-scale inversion with message passing Felix J. Herrmann, the University of British Columbia, Canada SUMMARY To meet current-day challenges, exploration seismology increasingly relies on

More information

Robust Principal Component Analysis

Robust Principal Component Analysis ELE 538B: Mathematics of High-Dimensional Data Robust Principal Component Analysis Yuxin Chen Princeton University, Fall 2018 Disentangling sparse and low-rank matrices Suppose we are given a matrix M

More information

2 Regularized Image Reconstruction for Compressive Imaging and Beyond

2 Regularized Image Reconstruction for Compressive Imaging and Beyond EE 367 / CS 448I Computational Imaging and Display Notes: Compressive Imaging and Regularized Image Reconstruction (lecture ) Gordon Wetzstein gordon.wetzstein@stanford.edu This document serves as a supplement

More information

GREEDY SIGNAL RECOVERY REVIEW

GREEDY SIGNAL RECOVERY REVIEW GREEDY SIGNAL RECOVERY REVIEW DEANNA NEEDELL, JOEL A. TROPP, ROMAN VERSHYNIN Abstract. The two major approaches to sparse recovery are L 1-minimization and greedy methods. Recently, Needell and Vershynin

More information

Signal Recovery from Permuted Observations

Signal Recovery from Permuted Observations EE381V Course Project Signal Recovery from Permuted Observations 1 Problem Shanshan Wu (sw33323) May 8th, 2015 We start with the following problem: let s R n be an unknown n-dimensional real-valued signal,

More information

Sparse regression. Optimization-Based Data Analysis. Carlos Fernandez-Granda

Sparse regression. Optimization-Based Data Analysis.   Carlos Fernandez-Granda Sparse regression Optimization-Based Data Analysis http://www.cims.nyu.edu/~cfgranda/pages/obda_spring16 Carlos Fernandez-Granda 3/28/2016 Regression Least-squares regression Example: Global warming Logistic

More information

Error Analysis for H 1 Based Wavelet Interpolations

Error Analysis for H 1 Based Wavelet Interpolations Error Analysis for H 1 Based Wavelet Interpolations Tony F. Chan Hao-Min Zhou Tie Zhou Abstract We rigorously study the error bound for the H 1 wavelet interpolation problem, which aims to recover missing

More information

Bhaskar Rao Department of Electrical and Computer Engineering University of California, San Diego

Bhaskar Rao Department of Electrical and Computer Engineering University of California, San Diego Bhaskar Rao Department of Electrical and Computer Engineering University of California, San Diego 1 Outline Course Outline Motivation for Course Sparse Signal Recovery Problem Applications Computational

More information

Sparse Solutions of Systems of Equations and Sparse Modelling of Signals and Images

Sparse Solutions of Systems of Equations and Sparse Modelling of Signals and Images Sparse Solutions of Systems of Equations and Sparse Modelling of Signals and Images Alfredo Nava-Tudela ant@umd.edu John J. Benedetto Department of Mathematics jjb@umd.edu Abstract In this project we are

More information

Enhanced Compressive Sensing and More

Enhanced Compressive Sensing and More Enhanced Compressive Sensing and More Yin Zhang Department of Computational and Applied Mathematics Rice University, Houston, Texas, U.S.A. Nonlinear Approximation Techniques Using L1 Texas A & M University

More information

1 History of statistical/machine learning. 2 Supervised learning. 3 Two approaches to supervised learning. 4 The general learning procedure

1 History of statistical/machine learning. 2 Supervised learning. 3 Two approaches to supervised learning. 4 The general learning procedure Overview Breiman L (2001). Statistical modeling: The two cultures Statistical learning reading group Aleander L 1 Histor of statistical/machine learning 2 Supervised learning 3 Two approaches to supervised

More information

Multiplicative and Additive Perturbation Effects on the Recovery of Sparse Signals on the Sphere using Compressed Sensing

Multiplicative and Additive Perturbation Effects on the Recovery of Sparse Signals on the Sphere using Compressed Sensing Multiplicative and Additive Perturbation Effects on the Recovery of Sparse Signals on the Sphere using Compressed Sensing ibeltal F. Alem, Daniel H. Chae, and Rodney A. Kennedy The Australian National

More information

Risk and Noise Estimation in High Dimensional Statistics via State Evolution

Risk and Noise Estimation in High Dimensional Statistics via State Evolution Risk and Noise Estimation in High Dimensional Statistics via State Evolution Mohsen Bayati Stanford University Joint work with Jose Bento, Murat Erdogdu, Marc Lelarge, and Andrea Montanari Statistical

More information

Recent Advances in Structured Sparse Models

Recent Advances in Structured Sparse Models Recent Advances in Structured Sparse Models Julien Mairal Willow group - INRIA - ENS - Paris 21 September 2010 LEAR seminar At Grenoble, September 21 st, 2010 Julien Mairal Recent Advances in Structured

More information

Joint Direction-of-Arrival and Order Estimation in Compressed Sensing using Angles between Subspaces

Joint Direction-of-Arrival and Order Estimation in Compressed Sensing using Angles between Subspaces Aalborg Universitet Joint Direction-of-Arrival and Order Estimation in Compressed Sensing using Angles between Subspaces Christensen, Mads Græsbøll; Nielsen, Jesper Kjær Published in: I E E E / S P Workshop

More information

Basis Pursuit Denoising and the Dantzig Selector

Basis Pursuit Denoising and the Dantzig Selector BPDN and DS p. 1/16 Basis Pursuit Denoising and the Dantzig Selector West Coast Optimization Meeting University of Washington Seattle, WA, April 28 29, 2007 Michael Friedlander and Michael Saunders Dept

More information

COMPRESSED SENSING IN PYTHON

COMPRESSED SENSING IN PYTHON COMPRESSED SENSING IN PYTHON Sercan Yıldız syildiz@samsi.info February 27, 2017 OUTLINE A BRIEF INTRODUCTION TO COMPRESSED SENSING A BRIEF INTRODUCTION TO CVXOPT EXAMPLES A Brief Introduction to Compressed

More information

Deep Neural Networks (3) Computational Graphs, Learning Algorithms, Initialisation

Deep Neural Networks (3) Computational Graphs, Learning Algorithms, Initialisation Deep Neural Networks (3) Computational Graphs, Learning Algorithms, Initialisation Steve Renals Machine Learning Practical MLP Lecture 5 16 October 2018 MLP Lecture 5 / 16 October 2018 Deep Neural Networks

More information

Structured matrix factorizations. Example: Eigenfaces

Structured matrix factorizations. Example: Eigenfaces Structured matrix factorizations Example: Eigenfaces An extremely large variety of interesting and important problems in machine learning can be formulated as: Given a matrix, find a matrix and a matrix

More information

Proximal Newton Method. Zico Kolter (notes by Ryan Tibshirani) Convex Optimization

Proximal Newton Method. Zico Kolter (notes by Ryan Tibshirani) Convex Optimization Proximal Newton Method Zico Kolter (notes by Ryan Tibshirani) Convex Optimization 10-725 Consider the problem Last time: quasi-newton methods min x f(x) with f convex, twice differentiable, dom(f) = R

More information

Sparse, stable gene regulatory network recovery via convex optimization

Sparse, stable gene regulatory network recovery via convex optimization Sparse, stable gene regulatory network recovery via convex optimization Arwen Meister June, 11 Gene regulatory networks Gene expression regulation allows cells to control protein levels in order to live

More information

Exact Signal Recovery from Sparsely Corrupted Measurements through the Pursuit of Justice

Exact Signal Recovery from Sparsely Corrupted Measurements through the Pursuit of Justice Exact Signal Recovery from Sparsely Corrupted Measurements through the Pursuit of Justice Jason N. Laska, Mark A. Davenport, Richard G. Baraniuk Department of Electrical and Computer Engineering Rice University

More information

Estimating LASSO Risk and Noise Level

Estimating LASSO Risk and Noise Level Estimating LASSO Risk and Noise Level Mohsen Bayati Stanford University bayati@stanford.edu Murat A. Erdogdu Stanford University erdogdu@stanford.edu Andrea Montanari Stanford University montanar@stanford.edu

More information

Performance Regions in Compressed Sensing from Noisy Measurements

Performance Regions in Compressed Sensing from Noisy Measurements Performance egions in Compressed Sensing from Noisy Measurements Junan Zhu and Dror Baron Department of Electrical and Computer Engineering North Carolina State University; aleigh, NC 27695, USA Email:

More information

Tractable Upper Bounds on the Restricted Isometry Constant

Tractable Upper Bounds on the Restricted Isometry Constant Tractable Upper Bounds on the Restricted Isometry Constant Alex d Aspremont, Francis Bach, Laurent El Ghaoui Princeton University, École Normale Supérieure, U.C. Berkeley. Support from NSF, DHS and Google.

More information