提升方法
AdaBoost 算法
Data Information: 二分类训练数据集 $T$
Algorithm Process
初始化训练数据的权值分布:
用权值分布 $D_i$
(a) 计算不正确率:(b) 计算 $\alpha_m$:
(c) 更新权值分布:
$Z_m$ 是归一化因子。
- 构造基本分类器的线性组合
- 得到最终分类器
提升树算法
Algorithm Process
输入:训练数据集 $T = \{(x_1, y_1),(x_2, y_2), \cdots, (x_N, y_N)\}$;
输出:提升树 $f_M(x)$。
(1)初始化 $f_0(x) = 0$。
(2)对 $m = 1, 2, \cdots, M$。
提升方法
http://example.com/2025/05/30/提升方法/