
xgboost
BojackHorseman
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
xgboost gpu加速
https://github.com/dmlc/xgboost/tree/master/plugin/updater_gpuCUDA Accelerated Tree Construction AlgorithmsThis plugin adds GPU accelerated tree construction algorithms to XGBoost.UsageSpecify the ‘upd翻译 2017-05-09 16:50:10 · 6327 阅读 · 3 评论 -
GBDT- gradient boosting decision tree
to be continued …决策树谈森林之前,先说一说决策树。小蓝书里说,决策树可以看作是if-then规则的集合。就是将空间用超平面进行划分,每次都一分为二,每个叶子节点(即类别)都是在空间中不相交的区域。对于训练数据,通过信息增益information gain(ID3) or 信息增益比information gain ratio(C4.5),选择合适的特征,构建决策树模型。随机森林Ra原创 2017-09-25 04:16:11 · 355 阅读 · 0 评论