我有一个问题,我应该从XGBoost
中选择哪个决策树。
我将使用以下代码作为示例。
#import packages
import xgboost as xgb
import matplotlib.pyplot as plt
# create DMatrix
df_dmatrix = xgb.DMatrix(data = X, label = y)
# set up parameter dictionary
params = {"objective":"reg:linear", "max_depth":2}
#train the model
xg_reg = xgb.train(params = params, dtrain = df_dmatrix, num_boost_round = 10)
#plot the tree
xgb.plot_tree(xg_reg, num_trees = n) # my question related to here
我在xg_reg
模型中创建了10个树,我可以通过在我的上一个代码中设置n
等于树的索引来绘制其中任何一个。
我的问题是:我怎么知道哪棵树能最好地解释数据集?它总是最后一个吗?或者我应该确定要在树中包含哪些功能,然后选择包含这些功能的树?