I'm making some XGBoost practice and I'd like to know on which subset of data the trees of XGBRegressor was fitted. Here the list of params that I use:
params = {'learning_rate': 0.09,
'n_estimators': 5,
'objective': 'reg:squarederror',
'max_depth': 6,
'subsample': 0.2
}
I'm working with Python 3.7 and XGBoost library. So is there some way to know that? I've read the doc but couldn't find some useful.