Skip to contents

Feature Selection using the Asynchronous Exhaustive Search Algorithm. Exhaustive Search generates all possible feature sets. The feature sets are evaluated asynchronously.

Details

The feature selection terminates itself when all feature sets are evaluated. It is not necessary to set a termination criterion.

Dictionary

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

fs("async_exhaustive_search")

Control Parameters

max_features

integer(1)
Maximum number of features. By default, number of features in mlr3::Task.

Super classes

mlr3fselect::FSelector -> mlr3fselect::FSelectorAsync -> FSelectorAsyncExhaustiveSearch

Methods

Inherited methods


Method new()

Creates a new instance of this R6 class.


Method optimize()

Starts the asynchronous optimization.

Usage

FSelectorAsyncExhaustiveSearch$optimize(inst)


Method clone()

The objects of this class are cloneable with this method.

Usage

FSelectorAsyncExhaustiveSearch$clone(deep = FALSE)

Arguments

deep

Whether to make a deep clone.