Stage 2 Fearture Selection
Stage2_FeartureSelection(
Stage2_FeartureSelection_Method = "RemoveHighcor",
data = NULL,
label = NULL,
cutoff = NULL,
preMode = NULL,
classifier = NULL,
verbose = TRUE,
cores = 1
)
Column index of feature
Feature selection methods. Available options are c(NULL, 'cor', 'wilcox.test','cor_rank','wilcox.test_rank','RemoveHighcor', 'RemoveLinear').
The input training dataset. The first column is the label.
The label of dataset
The cutoff used for feature selection threshold. It can be any value between 0 and 1.
The prediction mode. "Currently only supports 'probability' for binary classification tasks."
Learners in mlr3
Whether to print running process information to the console
The number of cores used for computation.
Shunjie Zhang