ParsnipModel {MachineShop} | R Documentation |
Parsnip Model
Description
Convert a model specification from the parsnip package to one that can be used with the MachineShop package.
Usage
ParsnipModel(object, ...)
Arguments
object |
model specification from the parsnip package. |
... |
tuning parameters with which to update |
Value
ParsnipModel
class object that inherits from MLModel
.
See Also
Examples
## Requires prior installation of suggested package parsnip to run
prsp_model <- parsnip::linear_reg(engine = "glmnet")
model <- ParsnipModel(prsp_model, penalty = 1, mixture = 1)
model
model_fit <- fit(sale_amount ~ ., data = ICHomes, model = model)
predict(model_fit)
[Package MachineShop version 3.7.0 Index]