In the lightGBM model, there are 2 parameters related to bagging
bagging_fraction
bagging_freq (frequency for bagging
0 means disable bagging; k means perform bagging at every k
iteration
Note: to enable bagging, bagging_fraction should be set to
value smaller than 1.0 as well)
I could find some more detailed explanation about this bagging function in gdbt. So is there anybody give me a more detailed explaination?