Skip to contents

Feature selection using the Genetic Algorithm from the package genalg.

Dictionary

This FSelector can be instantiated with the associated sugar function fs():

fs("genetic_search")

Control Parameters

For the meaning of the control parameters, see genalg::rbga.bin(). genalg::rbga.bin() internally terminates after iters iteration. We set ìters = 100000 to allow the termination via our terminators. If more iterations are needed, set ìters to a higher value in the parameter set.

Super classes

mlr3fselect::FSelector -> mlr3fselect::FSelectorBatch -> FSelectorBatchGeneticSearch

Methods

Inherited methods


Method new()

Creates a new instance of this R6 class.


Method clone()

The objects of this class are cloneable with this method.

Usage

FSelectorBatchGeneticSearch$clone(deep = FALSE)

Arguments

deep

Whether to make a deep clone.

Examples

# Feature Selection
# \donttest{

# retrieve task and load learner
task = tsk("penguins")
learner = lrn("classif.rpart")

# run feature selection on the Palmer Penguins data set
instance = fselect(
  fselector = fs("genetic_search"),
  task = task,
  learner = learner,
  resampling = rsmp("holdout"),
  measure = msr("classif.ce"),
  term_evals = 10
)

# best performing feature set
instance$result
#>    bill_depth bill_length body_mass flipper_length island    sex   year
#>        <lgcl>      <lgcl>    <lgcl>         <lgcl> <lgcl> <lgcl> <lgcl>
#> 1:      FALSE        TRUE      TRUE          FALSE  FALSE  FALSE  FALSE
#>                 features n_features classif.ce
#>                   <list>      <int>      <num>
#> 1: bill_length,body_mass          2 0.03478261

# all evaluated feature 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          FALSE  FALSE  FALSE  FALSE
#>  2:      FALSE       FALSE      TRUE          FALSE  FALSE  FALSE  FALSE
#>  3:       TRUE       FALSE     FALSE           TRUE  FALSE  FALSE  FALSE
#>  4:      FALSE        TRUE     FALSE          FALSE  FALSE  FALSE  FALSE
#>  5:      FALSE       FALSE     FALSE           TRUE  FALSE  FALSE  FALSE
#>  6:       TRUE       FALSE     FALSE          FALSE  FALSE  FALSE  FALSE
#>  7:      FALSE        TRUE      TRUE          FALSE  FALSE  FALSE  FALSE
#>  8:      FALSE        TRUE     FALSE          FALSE  FALSE  FALSE  FALSE
#>  9:      FALSE       FALSE     FALSE          FALSE   TRUE  FALSE  FALSE
#> 10:      FALSE        TRUE     FALSE           TRUE   TRUE  FALSE  FALSE
#>     classif.ce runtime_learners           timestamp batch_nr warnings errors
#>          <num>            <num>              <POSc>    <int>    <int>  <int>
#>  1: 0.30434783            0.005 2024-07-24 12:01:14        1        0      0
#>  2: 0.31304348            0.004 2024-07-24 12:01:14        2        0      0
#>  3: 0.24347826            0.005 2024-07-24 12:01:14        3        0      0
#>  4: 0.24347826            0.004 2024-07-24 12:01:14        4        0      0
#>  5: 0.22608696            0.004 2024-07-24 12:01:14        5        0      0
#>  6: 0.30434783            0.005 2024-07-24 12:01:14        6        0      0
#>  7: 0.03478261            0.005 2024-07-24 12:01:14        7        0      0
#>  8: 0.24347826            0.005 2024-07-24 12:01:14        8        0      0
#>  9: 0.37391304            0.005 2024-07-24 12:01:14        9        0      0
#> 10: 0.06086957            0.005 2024-07-24 12:01:14       10        0      0
#>                              features n_features  resample_result
#>                                <list>     <list>           <list>
#>  1:                        bill_depth          1 <ResampleResult>
#>  2:                         body_mass          1 <ResampleResult>
#>  3:         bill_depth,flipper_length          2 <ResampleResult>
#>  4:                       bill_length          1 <ResampleResult>
#>  5:                    flipper_length          1 <ResampleResult>
#>  6:                        bill_depth          1 <ResampleResult>
#>  7:             bill_length,body_mass          2 <ResampleResult>
#>  8:                       bill_length          1 <ResampleResult>
#>  9:                            island          1 <ResampleResult>
#> 10: bill_length,flipper_length,island          3 <ResampleResult>

# subset the task and fit the final model
task$select(instance$result_feature_set)
learner$train(task)
# }