-
Notifications
You must be signed in to change notification settings - Fork 33
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
Proximal Operator of group-Lasso penalty with L infinity norm #54
Comments
I believe the implementation is not correct, we need to project on the L1-norm ball which requires solving a (smaller) problem. This, to be fast, need to be properly implemented in C. Meanwhile, as this norm is not used very often, I'd suggest to remove from the code the possibility to use it. @MarioOcampo , is that ok with you? |
@daducci, It is ok for me. We can change the function, maybe show a warning message, meanwhile we implement the projection. |
The PR #55 is supposed to achieve that by throwing an exception. Can you confirm? |
Yes, the execution stops, and show the message |
The Proximal operator of the infinity norm is:
prox_InfinityNorm(x) = x − Proj{NormL1 ≤ 1}(x)
I think the implementation is not complete.
@matteofrigo, can we check it??
The text was updated successfully, but these errors were encountered: