caretModelSpec {caretEnsemble} | R Documentation |
Generate a specification for fitting a caret model
Description
A caret model specification consists of 2 parts: a model (as a string) and the arguments to the train call for fitting that model
Usage
caretModelSpec(method = "rf", ...)
Arguments
method |
the modeling method to pass to caret::train |
... |
Other arguments that will eventually be passed to caret::train |
Value
a list of lists
Examples
caretModelSpec("rf", tuneLength=5, preProcess="ica")
[Package caretEnsemble version 2.0.3 Index]