Applying a greedy algorithm to minimize the expected smoothed check loss.
Employs the Weak Restricted Greedy Algorithm. For the orthogonal variant, set stepsize
to NULL
.
cv_qboost(
X,
Y,
tau = 0.5,
m_stop = 1,
h = 0.1,
kernel = "Gaussian",
stepsize = NULL,
n_folds = 5
)
(matrix
)
A matrix of covariates.
(numeric()
)
A vector of responses.
(numeric(1L)
)
A quantile.
(integer(1L)
)
The number of boosting steps.
(numeric(1L)
)
The bandwith for smoothing.
(character(1L)
)
The kernel for smoothing.
(numeric(1L)
)
The stepsize of the boosting procedure. Set to NULL
for WCGA.
(integer(1L)
)
Number folds used.
An object with S3 class qboost
coeff_path
The cofficients along the boosting steps as a matrix (starts with a zero vector).
params
Additional parameters.
predict.qboost