h2oai / h2o-3

H2O is an Open Source, Distributed, Fast & Scalable Machine Learning Platform: Deep Learning, Gradient Boosting (GBM) & XGBoost, Random Forest, Generalized Linear Modeling (GLM with Elastic Net), K-Means, PCA, Generalized Additive Models (GAM), RuleFit, Support Vector Machine (SVM), Stacked Ensembles, Automatic Machine Learning (AutoML), etc.
http://h2o.ai
Apache License 2.0
6.85k stars 1.99k forks source link

Add alpha to GLM grid in AutoML #11889

Open exalate-issue-sync[bot] opened 1 year ago

exalate-issue-sync[bot] commented 1 year ago

Currently, in AutoML, we exploit the fact that you can pass a list of alphas to the alpha parameter in GLM. This results in a GLM where you can't tell which alpha is used and returns a single GLM with the "best" alpha. Let's move alpha to the GLM grid so that it returns six GLMs, one associated with each alpha that we try (0.0, 0.2, 0.4, 0.6, 0.8, 1.0).

We should definitely benchmark this to see that it doesn't hurt performance too much to have the six GLMs in the ensemble vs one GLM. If not, then we should include all six.

hasithjp commented 1 year ago

JIRA Issue Migration Info

Jira Issue: PUBDEV-5013 Assignee: Sebastien Poirier Reporter: Erin LeDell State: Open Fix Version: N/A Attachments: N/A Development PRs: Available

Linked PRs from JIRA

https://github.com/h2oai/h2o-3/pull/1795