Skip to content

Releases: cvxgrp/qss

Remove Scipy pin

09 Feb 21:03
724e5d2

Choose a tag to compare

Removing pin on Scipy requirement.

Full Changelog: v0.2.4...v0.2.5

v0.2.4

16 Sep 18:28
e2a5a1e

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

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

Choose a tag to compare

New nonconvex algorithm (actually)

20 Apr 21:33
5c9ff0d

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

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

Choose a tag to compare

What's Changed

  • fixed missed typos by @Thistleman in #42

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

v0.1.5

20 Mar 23:59
d0fd3c7

Choose a tag to compare

What's Changed

  • fixed missing environment by @Thistleman in #41

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

v0.1.4

20 Mar 23:52
508772b

Choose a tag to compare

What's Changed

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

v0.1.3

19 Jul 00:51
7920d04

Choose a tag to compare

Merge pull request #35 from cvxgrp/refactor_g

Refactor g function code