GBM 中的错误减少
Error reduction in GBM
我想知道 pretty.gbm.tree 函数中的 ErrorReduction 是如何计算的:https://github.com/gbm-developers/gbm3/blob/62c8dafd87b16fe1d2079cdd5058169f1f08967b/R/pretty-gbm-tree.r#L32
这个post对我帮助很大,但没有完全回答我的问题。
这是第一棵树的 pretty.gbm.tree 函数的输出:
output table
19167.524这个值是怎么算出来的?
谢谢
ErrorReduction 计算如下:
当前节点样本数*mse-左子节点样本数*mse-右子节点样本数*mse
我想知道 pretty.gbm.tree 函数中的 ErrorReduction 是如何计算的:https://github.com/gbm-developers/gbm3/blob/62c8dafd87b16fe1d2079cdd5058169f1f08967b/R/pretty-gbm-tree.r#L32
这个post对我帮助很大,但没有完全回答我的问题。
这是第一棵树的 pretty.gbm.tree 函数的输出: output table
19167.524这个值是怎么算出来的?
谢谢
ErrorReduction 计算如下:
当前节点样本数*mse-左子节点样本数*mse-右子节点样本数*mse