Skip to content

Commit

Permalink
Add isotonic module.
Browse files Browse the repository at this point in the history
  • Loading branch information
mblondel committed Feb 16, 2023
1 parent 0472831 commit f65001b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions jaxopt/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
# limitations under the License.

from jaxopt import implicit_diff
from jaxopt import isotonic
from jaxopt import loss
from jaxopt import objective
from jaxopt import projection
Expand Down
4 changes: 4 additions & 0 deletions tests/import_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ def test_implicit_diff(self):
jaxopt.implicit_diff.root_vjp
from jaxopt.implicit_diff import root_vjp

def test_isotonic(self):
jaxopt.isotonic.isotonic_l2_pav
from jaxopt.isotonic import isotonic_l2_pav

def test_prox(self):
jaxopt.prox.prox_none
from jaxopt.prox import prox_none
Expand Down

0 comments on commit f65001b

Please sign in to comment.