mljar-supervised icon indicating copy to clipboard operation
mljar-supervised copied to clipboard

Add ridge and lasso regression

Open fortierq opened this issue 4 years ago • 1 comments

It seems to me that there is no regularized linear regression among the available algorithms, which are useful in my experience.
I can try to add Ridge and/or Lasso, if you think it is worth it?

fortierq avatar Jul 28 '21 11:07 fortierq

@fortierq good idea, they can be added and left as a custom choice (can be selected in algorithms parameter in AutoML() constructor). Both algorithms can be added as they are from scikit-learn which is already in use.

If you are interested in adding both algorithms that would be fantastic! They should be add in similar way as Linear algorithm (code), example how to set parameters for tuning (Random Forest code).

pplonski avatar Aug 17 '21 10:08 pplonski