booster.RdAn R6 Class that provides an interface to gradient boosting with neural network feature transformation.
estimatorsList of fitted base models
learning_rateLearning rate for boosting
lossesVector of training losses
n_estimatorsNumber 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,
venv_path = "./venv"
)model_nameName of the base model
n_estimatorsNumber of boosting iterations
learning_rateLearning rate for boosting
toleranceConvergence tolerance
calibrationWhether to calibrate the model
seedRandom seed
show_progressWhether to show progress bar
verboseWhether to print detailed output
venv_pathPath to the virtual environment
predict()Make predictions on new data