booster.Rd
An R6 Class that provides an interface to gradient boosting with neural network feature transformation.
estimators
List of fitted base models
learning_rate
Learning rate for boosting
losses
Vector of training losses
n_estimators
Number of estimators used
new()
Create a new Booster object
Booster$new(
model_name = "ExtraTreeRegressor",
n_estimators = 100L,
learning_rate = 0.1,
tolerance = 1e-04,
calibration = FALSE,
seed = 123L,
show_progress = TRUE,
verbose = FALSE
)
model_name
Name of the base model
n_estimators
Number of boosting iterations
learning_rate
Learning rate for boosting
tolerance
Convergence tolerance
calibration
Whether to calibrate the model
seed
Random seed
show_progress
Whether to show progress bar
verbose
Whether to print detailed output
predict()
Make predictions on new data