Skip to contents

Feature selection using Asynchronous Random Search Algorithm.

Source

Bergstra J, Bengio Y (2012). “Random Search for Hyper-Parameter Optimization.” Journal of Machine Learning Research, 13(10), 281–305. https://jmlr.csail.mit.edu/papers/v13/bergstra12a.html.

Details

The feature sets are randomly drawn. The sets are evaluated asynchronously. The algorithm uses bbotk::OptimizerAsyncRandomSearch for optimization.

Dictionary

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

fs("async_random_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 -> FSelectorAsyncRandomSearch

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

FSelectorAsyncRandomSearch$clone(deep = FALSE)

Arguments

deep

Whether to make a deep clone.