Description Usage Arguments Details Value
Trains and deploys multi-class classifiers across a vast parameter search space.
1 2 | plGridMulti(array.train, array.valid = NULL, ctrlFS, top, how,
aucSkip = FALSE, verbose = TRUE, ...)
|
array.train |
Specifies the |
array.valid |
Specifies the |
ctrlFS |
A list of arguments handled by |
top |
A numeric scalar or character vector. A numeric scalar indicates
the number of top features that should undergo feature selection. A character vector
indicates specifically which features by name should undergo feature selection.
Set |
how |
A character string. Specifies the |
aucSkip |
A logical scalar. Argument passed to |
verbose |
A logical scalar. Argument passed to |
... |
Arguments passed to the |
Unlike plGrid
, the plGridMulti
function accepts a ctrlFS
argument, allowing for 1-vs-all classification with implicit feature selection.
1-vs-all classification, this function divides the data into 1-vs-all bins,
performs a 1-vs-all feature selection for each bin, and then performs a 1-vs-all
classification for that same bin. As such, each ExprsMachine
within the
ExprsModule
will have its own unique feature selection history.
Take note, that plGridMulti
does not have built-in plCV
support.
To use plGridMulti
with cross-validation, use plNested
.
An ExprsPipeline-class
object.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.