A list with the following components:
typewhich boosting algorithm was run. One of: "L2Boost", "LADBoost", "MBoost", "Robloss", "SBoost", "RRBoost" (character string)
controlthe list of control parameters used
niternumber of iterations for the boosting algorithm (for RRBoost T_1,max + T_2,max) (numeric)
errorif make_prediction = TRUE
in argument control
, a vector of prediction errors evaluated on the test set at early stopping time. The length of the vector matches that of the error
argument in the input.
tree_initif y_init = "LADTree"
, the initial tree (an object of class rpart
)
tree_listif save_tree = TRUE
in control
, a list of trees fitted at each boosting iteration
f_train_inita vector of the initialized estimator of the training data
alphaa vector of base learners' coefficients
early_stop_idxearly stopping iteration
when_initif type = "RRBoost"
, the early stopping time of the first stage of RRBoost
loss_traina vector of training loss values (one per iteration)
loss_vala vector of validation loss values (one per iteration)
err_vala vector of validation aad errors (one per iteration)
err_traina vector of training aad errors (one per iteration)
err_testa matrix of test errors before and at the early stopping iteration (returned if make_prediction = TRUE in control); the matrix dimension is the early stopping iteration by the number of error types (matches the error
argument in the input); each row corresponds to the test errors at each iteration
f_traina matrix of training function estimates at all iterations (returned if save_f = TRUE in control); each column corresponds to the fitted values of the predictor at each iteration
f_vala matrix of validation function estimates at all iterations (returned if save_f = TRUE in control); each column corresponds to the fitted values of the predictor at each iteration
f_testa matrix of test function estimatesbefore and at the early stopping iteration (returned if save_f = TRUE and make_prediction = TRUE in control); each column corresponds to the fitted values of the predictor at each iteration
var_selecta vector of variable selection indicators (one per explanatory variable; 1 if the variable was selected by at least one of the base learners, and 0 otherwise)
var_importancea vector of permutation variable importance scores (one per explanatory variable, and returned if cal_imp = TRUE in control)