All Projects → JuliaFirstOrder → ProximalOperators.jl

JuliaFirstOrder / ProximalOperators.jl

Licence: other
Proximal operators for nonsmooth optimization in Julia

Programming Languages

julia
2034 projects
TeX
3793 projects

Projects that are alternatives of or similar to ProximalOperators.jl

A- Guide -to Data Sciecne from mathematics
It is a blueprint to data science from the mathematics to algorithms. It is not completed.
Stars: ✭ 25 (-78.99%)
Mutual labels:  admm, numerical-optimization
Ceres Solver
A large scale non-linear optimization library
Stars: ✭ 2,180 (+1731.93%)
Mutual labels:  numerical-optimization, nonlinear-programming
Julia
The Julia Programming Language
Stars: ✭ 37,497 (+31410.08%)
Mutual labels:  julia-language
Bonobo.jl
A general branch and bound framework
Stars: ✭ 26 (-78.15%)
Mutual labels:  julia-language
NotebookToLaTeX.jl
A Julia package for converting your Pluto and Jupyter Notebooks into beautiful Latex.
Stars: ✭ 70 (-41.18%)
Mutual labels:  julia-language
18s191
Course 18.S191 at MIT, Spring 2021 - Introduction to computational thinking with Julia:
Stars: ✭ 2,094 (+1659.66%)
Mutual labels:  julia-language
DataFrames
Welcome to DataFrames.jl with Bogumił Kamiński
Stars: ✭ 106 (-10.92%)
Mutual labels:  julia-language
Tectonic.jl
Tectonic typesetting for Julia.
Stars: ✭ 21 (-82.35%)
Mutual labels:  julia-language
juliaimages.github.io
Documentation For JuliaImages
Stars: ✭ 25 (-78.99%)
Mutual labels:  julia-language
ComputationalMathematics
Lecture slides and homework assignments for MA5233 Computational Mathematics at the National University of Singapore.
Stars: ✭ 35 (-70.59%)
Mutual labels:  julia-language
HOT
Hierarchical Optimization Time Integration (HOT) for efficient implicit timestepping of the material point method (MPM)
Stars: ✭ 83 (-30.25%)
Mutual labels:  numerical-optimization
math-server-docker
The ideal multi-user Data Science server with Jupyterhub and RStudio, ready for Python, R and Julia languages.
Stars: ✭ 70 (-41.18%)
Mutual labels:  julia-language
GlobalSensitivity.jl
Robust, Fast, and Parallel Global Sensitivity Analysis (GSA) in Julia
Stars: ✭ 30 (-74.79%)
Mutual labels:  julia-language
BenchmarksPythonJuliaAndCo
Benchmark(s) of numerical programs with Python (and Scipy, Pythran, Numba), Julia and C++.
Stars: ✭ 19 (-84.03%)
Mutual labels:  julia-language
Gen.jl
A general-purpose probabilistic programming system with programmable inference
Stars: ✭ 1,595 (+1240.34%)
Mutual labels:  julia-language
ECharts.jl
Julia package for the Apache ECharts v4 visualization library
Stars: ✭ 80 (-32.77%)
Mutual labels:  julia-language
PartialLeastSquaresRegressor.jl
Implementation of a Partial Least Squares Regressor
Stars: ✭ 31 (-73.95%)
Mutual labels:  julia-language
learningjulia
A blog where I document my learning of the Julia programming language.
Stars: ✭ 15 (-87.39%)
Mutual labels:  julia-language
QSimulator.jl
Unitary and Lindbladian evolution in Julia
Stars: ✭ 19 (-84.03%)
Mutual labels:  julia-language
prox
[INACTIVE] A search and discovery app for the "here & now". We're experimenting with ideas on mobile that can better surface content from the open web.
Stars: ✭ 22 (-81.51%)
Mutual labels:  prox

ProximalOperators.jl

Build status codecov DOI

Proximal operators for nonsmooth optimization in Julia. This package can be used to easily implement proximal algorithms for convex and nonconvex optimization problems such as ADMM, the alternating direction method of multipliers.

See ProximalAlgorithms.jl for generic implementations of algorithms based on the primitives here defined.

See the documentation on how to use the package.

Installation

To install the package, hit ] from the Julia command line to enter the package manager, then

pkg> add ProximalOperators

Usage

With using ProximalOperators the package exports the prox and prox! methods to evaluate the proximal mapping of several functions.

A list of available function constructors is in the documentation.

For example, you can create the L1-norm as follows.

julia> f = NormL1(3.5)
description : weighted L1 norm
type        : Array{Complex} → Real
expression  : x ↦ λ||x||_1
parameters  : λ = 3.5

Functions created this way are, of course, callable.

julia> x = randn(10) # some random point
julia> f(x)
32.40700818735099

prox evaluates the proximal operator associated with a function, given a point and (optionally) a positive stepsize parameter, returning the proximal point y and the value of the function at y:

julia> y, fy = prox(f, x, 0.5) # last argument is 1.0 if absent

prox! evaluates the proximal operator in place, and only returns the function value at the proximal point:

julia> fy = prox!(y, f, x, 0.5) # in-place equivalent to y, fy = prox(f, x, 0.5)

Related packages

References

  1. N. Parikh and S. Boyd (2014), Proximal Algorithms, Foundations and Trends in Optimization, vol. 1, no. 3, pp. 127-239.

  2. S. Boyd, N. Parikh, E. Chu, B. Peleato and J. Eckstein (2011), Distributed Optimization and Statistical Learning via the Alternating Direction Method of Multipliers, Foundations and Trends in Machine Learning, vol. 3, no. 1, pp. 1-122.

Credits

ProximalOperators.jl is developed by Lorenzo Stella and Niccolò Antonello at KU Leuven, ESAT/Stadius, and Mattias Fält at Lunds Universitet, Department of Automatic Control.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].