Skip to contents

Extra Trees auto.

Super class

mlr3automl::Auto -> AutoExtraTrees

Methods

Inherited methods


Method new()

Creates a new instance of this R6 class.

Usage

AutoExtraTrees$new(id = "extra_trees")

Arguments

id

(character(1))
Identifier for the new instance.


Method graph()

Create the graph for the auto.

Usage

AutoExtraTrees$graph(task, measure, n_threads, timeout, devices)

Arguments

task

(mlr3::Task).

measure

(mlr3::Measure).

n_threads

(numeric(1)).

timeout

(numeric(1)).

devices

(character())
Devices to use. Allowed values are "cpu" and "cuda". Default is "cpu".


Method estimate_memory()

Estimate the memory for the auto.

Usage

AutoExtraTrees$estimate_memory(task)

Arguments

task

(mlr3::Task).


Method clone()

The objects of this class are cloneable with this method.

Usage

AutoExtraTrees$clone(deep = FALSE)

Arguments

deep

Whether to make a deep clone.