View source: R/ridge_learner_no_scale.R
| makeRidgeLearner_no_scale | R Documentation | 
Creates a Ridge learner object to be used in veb_boost
makeRidgeLearner_no_scale(
  X,
  X_test = NULL,
  growMode = c("NA", "+*", "+", "*"),
  changeToConstant = FALSE
)
| X | is our design matrix used in training. Scaling is NOT handled by this function, and must be done by the user beforehand | 
| X_test | is our design matrix used in testing Scaling is NOT handled by this function, and must be done by the user beforehand | 
| growMode | is a string for if the learner should be grown (or not)
If  | 
| changeToConstant | is a logical for if constant fits should be changed to be constant | 
A Ridge learner \beta has a prior distribution 
\beta ~ N(0, \sigma_{\beta}^2 S^2)
 for a fixed and given S.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.