Define a base learner model based on parsnip and tune
Arguments
- model_type
character(1). Model type to be used. Default is "mlp". Available options are "mlp", "xgb", "lgb", "elnet".
- device
character(1). The device to be used for training. GPU acceleration is possible for
brulee
-engine multi-layer perceptron (model_type = "mlp"
;device = "cuda"
) and forlightgbm
-engine boosted tree (model_type = "lgb"; device = "gpu"
). Ensure your system is equipped with CUDA-enabled graphical processing units if utilizingcuda
orgpu
.