Skip to content

Releases: cvxgrp/qss

v0.2.4

16 Sep 18:28
e2a5a1e
Compare
Choose a tag to compare

What's Changed

  • update pyproject.toml and workflows by @pluflou in #48

Full Changelog: v0.2.3...v0.2.4

v0.2.3

23 Aug 21:05
927aa4f
Compare
Choose a tag to compare

What's Changed

  • fixed bug in maxiter int check to make robust on different os/python by @pluflou in #45

New Contributors

Full Changelog: v0.2.2...v0.2.3

Fixing deployment bug to PyPI

20 Apr 21:38
2819006
Compare
Choose a tag to compare

New nonconvex algorithm (actually)

20 Apr 21:33
5c9ff0d
Compare
Choose a tag to compare

What's Changed

  • New algorithm for nonconvex problems by @bmeyers in #44

Full Changelog: v0.2.0...v0.2.1

New nonconvex algorithm

14 Apr 22:53
e4f9c58
Compare
Choose a tag to compare

This release of QSS implements a new algorithm for solving nonconvex quadratic separable problems. Previously, we implemented nonconvex ADMM for cost nonconvex cost functions that have closed-form proximal operators. Now, we begin by solving a relaxed convex version of the problem, and then we use that solution to start the iterates of nonconvex ADMM. In practice, this method is much better at avoiding suboptimal local minima.

v0.1.6

21 Mar 00:24
5422012
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.1.5...v0.1.6

v0.1.5

20 Mar 23:59
d0fd3c7
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.1.4...v0.1.5

v0.1.4

20 Mar 23:52
508772b
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.1.3...v0.1.4

v0.1.3

19 Jul 00:51
7920d04
Compare
Choose a tag to compare
Merge pull request #35 from cvxgrp/refactor_g

Refactor g function code