Linear and regularized#
Linear and regularized models predict with a weighted sum of features. They run from ordinary least squares through ridge, lasso, and elastic net shrinkage to structured and adaptive penalties that also select variables.
Pass any model string below as Arm(model=...). Extra names an optional dependency, Scaling flags whether predictors should be standardized, and Tunable counts the hyperparameters the search space exposes.
Model string |
Description |
Input |
Extra |
Scaling |
Recommended preprocessing |
Tunable |
|---|---|---|---|---|---|---|
|
Adaptive elastic net using initial coefficient-based column weights. |
supervised |
none |
no |
default |
3 |
|
Adaptive lasso using initial coefficient-based penalty weights. |
supervised |
none |
no |
default |
2 |
|
Empirical-Bayes Bayesian ridge. |
supervised |
none |
no |
default |
0 |
|
Elastic net regression. |
supervised |
none |
no |
default |
2 |
|
Ridge regression with a fused-difference coefficient prior. |
supervised |
none |
no |
default |
1 |
|
Componentwise linear boosting. |
supervised |
none |
no |
default |
2 |
|
Package-native group lasso with group-level sparsity. |
supervised |
none |
no |
default |
1 |
|
Robust Huber regression. |
supervised |
none |
no |
default |
1 |
|
Lasso regression. |
supervised |
none |
no |
default |
1 |
|
Ridge regression with non-negative coefficients. |
supervised |
none |
no |
default |
1 |
|
Ordinary least squares with no model-owned tuning space. |
supervised |
none |
no |
default |
0 |
|
Time-varying random-walk ridge fit, predicting with the final coefficient vector. |
supervised |
none |
no |
default |
1 |
|
Ridge regression. |
supervised |
none |
no |
default |
1 |
|
Ridge regression shrinking coefficients toward a target vector. |
supervised |
none |
no |
default |
1 |
|
Package-native sparse group lasso with group and feature-level sparsity. |
supervised |
none |
no |
default |
2 |
|
Goulet Coulombe TVP ridge / 2SRR estimator. |
supervised |
none |
no |
default |
1 |
Reference#
Models reference page for
ModelSpec,ModelFit, and fit conventions.