使用 AdaBoost 的决策树回归#
在具有一点高斯噪声的一维正弦数据集上,使用 AdaBoost.R2 [1] 算法增强决策树。将 299 个增强器(300 棵决策树)与单个决策树回归器进行比较。随着增强器数量的增加,回归器可以拟合更多细节。
有关展示使用更有效的回归模型(例如 HistGradientBoostingRegressor
)的优势的示例,请参阅直方图梯度提升树中的特征。
准备数据#
首先,我们准备具有正弦关系和一些高斯噪声的虚拟数据。
# Author: Noel Dawe <[email protected]>
#
# License: BSD 3 clause
import numpy as np
rng = np.random.RandomState(1)
X = np.linspace(0, 6, 100)[:, np.newaxis]
y = np.sin(X).ravel() + np.sin(6 * X).ravel() + rng.normal(0, 0.1, X.shape[0])
使用 DecisionTree 和 AdaBoost 回归器进行训练和预测#
现在,我们定义分类器并将它们拟合到数据中。然后,我们对相同的数据进行预测,以查看它们拟合数据的程度。第一个回归器是 DecisionTreeRegressor
,其中 max_depth=4
。第二个回归器是 AdaBoostRegressor
,它使用 DecisionTreeRegressor
(其中 max_depth=4
)作为基学习器,并将使用 n_estimators=300
个此类基学习器构建。
from sklearn.ensemble import AdaBoostRegressor
from sklearn.tree import DecisionTreeRegressor
regr_1 = DecisionTreeRegressor(max_depth=4)
regr_2 = AdaBoostRegressor(
DecisionTreeRegressor(max_depth=4), n_estimators=300, random_state=rng
)
regr_1.fit(X, y)
regr_2.fit(X, y)
y_1 = regr_1.predict(X)
y_2 = regr_2.predict(X)
绘制结果#
最后,我们绘制了两个回归器(单个决策树回归器和 AdaBoost 回归器)对数据的拟合程度。
import matplotlib.pyplot as plt
import seaborn as sns
colors = sns.color_palette("colorblind")
plt.figure()
plt.scatter(X, y, color=colors[0], label="training samples")
plt.plot(X, y_1, color=colors[1], label="n_estimators=1", linewidth=2)
plt.plot(X, y_2, color=colors[2], label="n_estimators=300", linewidth=2)
plt.xlabel("data")
plt.ylabel("target")
plt.title("Boosted Decision Tree Regression")
plt.legend()
plt.show()
脚本总运行时间:(0 分 0.456 秒)
相关示例