Giter Club home page Giter Club logo

ista_lasso's Introduction

Iterative Shrinkage Thresholding Algorithm (ISTA) for LASSO problem

This is Iterative Shrinkage Thresholding Algorithm (ISTA) for solving LASSO problem. LASSO problem assumes that signal x be sparse, and this assumption is not wrong. Most natural siggnal can be represented sparse in some domain. For example, natural scenes are sparse in Fourier transform domain or DCT domain. Sometimes the scene itself can be very sparse (e.g. stars at night).

ISTA is a first-order method which is gradient-based so it is simple and efficient. However, its convergence is slow - O(1/k). A fast ISTA (FISTA) is developed for faster convergence, which gives an improved complexity, O(1/(k^2)).

Here we will compare the LASSO problem with ISTA and FISTA to CLS problem with CG. You will see ISTA and FISTA work well on the sparse signal while CLS doesn't. You will see the improved performance of FISTA over ISTA as well.

Results of image deconvolution

alt tag alt tag
alt tag alt tag
alt tag

Description of files/folders

  • demo_ista.m: test script
  • /opt: includes functions for optimization methods
  • /func: includes functions for objective function and corresponding gradient function, and hessian function.
  • /result: includes result images

Image degradation and deconvolution

  • Degradation model: y = Hx = HPb = Ab where A = HP, P:representation matrix (P = I in my example)
  • Deconvolution:
    (1) LASSO: min_x ||y-Ab||2 + lambda*||b||1
    (2) CLS: min_x 0.5||y-Hx||2 + 0.5lambda||Cx||2

Optimization methods

Each approach is solved by a different numerical optimization method. ISTA/FISTA are used for LASSO problem and CG method is used for CLS.
(1) ISTA: A type of proximal gradient method
(2) FISTA: Fast version of ISTA
(3) Conjugate Gradient A efficient optimization algorithm for solving Ax=b (or quadratic objective function)

Contact

Seunghwan Yoo ([email protected])

ista_lasso's People

Contributors

seunghwanyoo avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.