mljar-supervised
mljar-supervised copied to clipboard
Add ridge and lasso regression
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 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).