Can someone provide a work flow about this? For instance, suppose I am doing binary classification,
For each iteration of the algorithm:
Randomly sample k*N rows, where k is the bag.fraction, and N is nrow(dataset).
Build a classifier using this training sample, suppose we use classification tree here.
Predict the terminal node class label.
This how boosting is done without a CV. If I want to do a 3-fold CV, where exactly do I apply it? Between step 1 and 2 or after step 3? Thanks!