An implementation of the Newton ADMM algorithm for solving cone problems. Created by Eric Wong, Alnur Ali, and Zico Kolter
Newton ADMM is a general ADMM algorithm described in our paper here which uses a semi-smooth Newton's method to minimize the ADMM residuals.
-
This repository contains an implementation of Newton ADMM for the SCS ADMM iterations. In essence, this is a second order ADMM solver for generic cone programming. The signature for the solver is almost identical to that of SCS, differing only in optional keyword arguments, and so the two can be used interchangably.
-
Examples of running Newton ADMM on various cone problems can be found in the examples directory.
-
This repository also contains implementations of cone projections and their respective Jacobians. See
newton_admm/cones.py
.
- Add RPCA cone example
- Add specialized solver examples
This repository is Apache-licensed.