-
Notifications
You must be signed in to change notification settings - Fork 4
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
MTN use benchopt 1.5 API #29
MTN use benchopt 1.5 API #29
Conversation
@mathurinm benchmark is up to date with |
(closed/reopened to trigger the tests, after reenabling the workflow that had been disabled due to inactivity on the repo) |
Thanks heaps @wassimmazouz ! |
'isotropy': ["anisotropic", "isotropic"], | ||
'data_fit': ["lsq", "huber"]} | ||
|
||
def __init__(self, reg=0.02, delta=0.1, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@wassimmazouz was there a particular reason to remove the init ? this slipped through
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
there is no need for __init__
to pass the parameters as we do this directly with benchopt
, so removing it avoids having duplicated code, that you need to keep up to date when adding new parameters.
No description provided.