Class for Single Criterion Feature Selection
Source:R/FSelectInstanceBatchSingleCrit.R
FSelectInstanceBatchSingleCrit.Rd
The FSelectInstanceBatchSingleCrit specifies a feature selection problem for a FSelector.
The function fsi()
creates a FSelectInstanceBatchSingleCrit and the function fselect()
creates an instance internally.
The instance contains an ObjectiveFSelectBatch object that encodes the black box objective function a FSelector has to optimize.
The instance allows the basic operations of querying the objective at design points ($eval_batch()
).
This operation is usually done by the FSelector.
Evaluations of feature subsets are performed in batches by calling mlr3::benchmark()
internally.
The evaluated feature subsets are stored in the Archive ($archive
).
Before a batch is evaluated, the bbotk::Terminator is queried for the remaining budget.
If the available budget is exhausted, an exception is raised, and no further evaluations can be performed from this point on.
The FSelector is also supposed to store its final result, consisting of a selected feature subset and associated estimated performance values, by calling the method instance$assign_result()
.
Default Measures
If no measure is passed, the default measure is used. The default measure depends on the task type.
Task | Default Measure | Package |
"classif" | "classif.ce" | mlr3 |
"regr" | "regr.mse" | mlr3 |
"surv" | "surv.cindex" | mlr3proba |
"dens" | "dens.logloss" | mlr3proba |
"classif_st" | "classif.ce" | mlr3spatial |
"regr_st" | "regr.mse" | mlr3spatial |
"clust" | "clust.dunn" | mlr3cluster |
Resources
There are several sections about feature selection in the mlr3book.
Getting started with wrapper feature selection.
Do a sequential forward selection Palmer Penguins data set.
The gallery features a collection of case studies and demos about optimization.
Utilize the built-in feature importance of models with Recursive Feature Elimination.
Run a feature selection with Shadow Variable Search.
Feature Selection on the Titanic data set.
Analysis
For analyzing the feature selection results, it is recommended to pass the archive to as.data.table()
.
The returned data table is joined with the benchmark result which adds the mlr3::ResampleResult for each feature set.
The archive provides various getters (e.g. $learners()
) to ease the access.
All getters extract by position (i
) or unique hash (uhash
).
For a complete list of all getters see the methods section.
The benchmark result ($benchmark_result
) allows to score the feature sets again on a different measure.
Alternatively, measures can be supplied to as.data.table()
.
Super classes
bbotk::OptimInstance
-> bbotk::OptimInstanceBatch
-> bbotk::OptimInstanceBatchSingleCrit
-> FSelectInstanceBatchSingleCrit
Active bindings
result_feature_set
(
character()
)
Feature set for task subsetting.
Methods
Method new()
Creates a new instance of this R6 class.
Usage
FSelectInstanceBatchSingleCrit$new(
task,
learner,
resampling,
measure,
terminator,
store_benchmark_result = TRUE,
store_models = FALSE,
check_values = FALSE,
callbacks = NULL,
ties_method = "least_features"
)
Arguments
task
(mlr3::Task)
Task to operate on.learner
(mlr3::Learner)
Learner to optimize the feature subset for.resampling
(mlr3::Resampling)
Resampling that is used to evaluated the performance of the feature subsets. Uninstantiated resamplings are instantiated during construction so that all feature subsets are evaluated on the same data splits. Already instantiated resamplings are kept unchanged.measure
(mlr3::Measure)
Measure to optimize. IfNULL
, default measure is used.terminator
(bbotk::Terminator)
Stop criterion of the feature selection.store_benchmark_result
(
logical(1)
)
Store benchmark result in archive?store_models
(
logical(1)
). Store models in benchmark result?check_values
(
logical(1)
)
Check the parameters before the evaluation and the results for validity?callbacks
(list of CallbackBatchFSelect)
List of callbacks.ties_method
(
character(1)
)
The method to break ties when selecting sets while optimizing and when selecting the best set. Can be"least_features"
or"random"
. The option"least_features"
(default) selects the feature set with the least features. If there are multiple best feature sets with the same number of features, one is selected randomly. Therandom
method returns a random feature set from the best feature sets. Ignored if multiple measures are used.
Method assign_result()
The FSelector writes the best found feature subset and estimated performance value here. For internal use.
Arguments
xdt
(
data.table::data.table()
)
x values asdata.table
. Each row is one point. Contains the value in the search space of the FSelectInstanceBatchMultiCrit object. Can contain additional columns for extra information.y
(
numeric(1)
)
Optimal outcome.extra
(
data.table::data.table()
)
Additional information....
(
any
)
ignored.
Examples
# Feature selection on Palmer Penguins data set
# \donttest{
task = tsk("penguins")
learner = lrn("classif.rpart")
# Construct feature selection instance
instance = fsi(
task = task,
learner = learner,
resampling = rsmp("cv", folds = 3),
measures = msr("classif.ce"),
terminator = trm("evals", n_evals = 4)
)
# Choose optimization algorithm
fselector = fs("random_search", batch_size = 2)
# Run feature selection
fselector$optimize(instance)
#> bill_depth bill_length body_mass flipper_length island sex year
#> <lgcl> <lgcl> <lgcl> <lgcl> <lgcl> <lgcl> <lgcl>
#> 1: TRUE TRUE TRUE TRUE TRUE TRUE FALSE
#> features n_features
#> <list> <int>
#> 1: bill_depth,bill_length,body_mass,flipper_length,island,sex 6
#> classif.ce
#> <num>
#> 1: 0.06112382
# Subset task to optimal feature set
task$select(instance$result_feature_set)
# Train the learner with optimal feature set on the full data set
learner$train(task)
# Inspect all evaluated sets
as.data.table(instance$archive)
#> bill_depth bill_length body_mass flipper_length island sex year
#> <lgcl> <lgcl> <lgcl> <lgcl> <lgcl> <lgcl> <lgcl>
#> 1: TRUE FALSE FALSE TRUE TRUE TRUE TRUE
#> 2: FALSE FALSE FALSE TRUE FALSE TRUE TRUE
#> 3: TRUE TRUE TRUE TRUE TRUE TRUE FALSE
#> 4: TRUE FALSE FALSE TRUE FALSE FALSE TRUE
#> classif.ce runtime_learners timestamp batch_nr warnings errors
#> <num> <num> <POSc> <int> <int> <int>
#> 1: 0.15400458 0.016 2024-11-07 21:49:52 1 0 0
#> 2: 0.19768624 0.030 2024-11-07 21:49:52 1 0 0
#> 3: 0.06112382 0.032 2024-11-07 21:49:52 2 0 0
#> 4: 0.18893974 0.013 2024-11-07 21:49:52 2 0 0
#> features n_features
#> <list> <list>
#> 1: bill_depth,flipper_length,island,sex,year 5
#> 2: flipper_length,sex,year 3
#> 3: bill_depth,bill_length,body_mass,flipper_length,island,sex 6
#> 4: bill_depth,flipper_length,year 3
#> resample_result
#> <list>
#> 1: <ResampleResult>
#> 2: <ResampleResult>
#> 3: <ResampleResult>
#> 4: <ResampleResult>
# }