Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix lasso with scalar l1reg #604

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

BalzaniEdoardo
Copy link

First of all, thanks for the very nice package.

In this PR I am generalizing the behavior of jaxopt.prox.prox_lasso to handle scalar input when jit-compiled.

In particular the following used to result in an exception.

import numpy as np
from jaxopt import prox
import jax

rng = np.random.RandomState(0)
x = (rng.rand(20) * 2 - 1, rng.rand(20) * 2 - 1)
jax.jit(prox.prox_lasso)(x, 0.5)

Best regards,
Edoardo

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant