Get the configuration of an inducer
object
Usage
# S3 method for Inducer
configuration(x, ...)
Examples
inducer <- InducerXGBoost()
configuration(inducer)
#> $.data
#> NULL
#>
#> $nrounds
#> [1] 1
#>
#> $eta
#> [1] 0.3
#>
#> $gamma
#> [1] 0
#>
#> $max_depth
#> [1] 6
#>
#> $min_child_weight
#> [1] 1
#>
#> $subsample
#> [1] 1
#>
#> $colsample_bytree
#> [1] 1
#>
#> $lambda
#> [1] 1
#>
#> $alpha
#> [1] 0
#>
#> $num_parallel_tree
#> [1] 1
#>