• GBDT && XGBOOST


                                  GBDT && XGBOOST

                              

    Outline

                      Introduction

                      GBDT Model

                      XGBOOST Model

                      GBDT vs. XGBOOST

                      Experiments

                      References

    Introduction

    Gradient Boosting Decision Tree is a machine learning technique for regression and classification problems, which produces a prediction model in the form of an ensemble of basic learning models, typically decision trees.

    Decision Tree: e.g.

    eXtreme Gradient Boosting (XGBOOST) is an efficient implementation of Gradient Boosting method, a scalable, portable and distributed GB library, and it was started as a research project by Tianqi Chen.

    GBDT Model

    XGBOOST Model

    GBDT vs XGBOOST:

    Experiments

    References:

    1. J. Friedman(1999). Greedy Function Approximation: A Gradient Boosting

    Machine.

    2. J. Friedman(1999). Stochastic Gradient Boosting.

    3. T. Chen, C. Guestrin(2016). XGBoost: A Scalable Tree Boosting System.

    				<script>
    					(function(){
    						function setArticleH(btnReadmore,posi){
    							var winH = $(window).height();
    							var articleBox = $("div.article_content");
    							var artH = articleBox.height();
    							if(artH > winH*posi){
    								articleBox.css({
    									'height':winH*posi+'px',
    									'overflow':'hidden'
    								})
    								btnReadmore.click(function(){
    									articleBox.removeAttr("style");
    									$(this).parent().remove();
    								})
    							}else{
    								btnReadmore.parent().remove();
    							}
    						}
    						var btnReadmore = $("#btn-readmore");
    						if(btnReadmore.length>0){
    							if(currentUserName){
    								setArticleH(btnReadmore,3);
    							}else{
    								setArticleH(btnReadmore,1.2);
    							}
    						}
    					})()
    				</script>
    				</article>
  • 相关阅读:
    MySQL 卸载
    Mysql(压缩包)下载与安装
    sqlserver一次性修改多条
    mysql一些操作
    SQL函数集合
    js时间转换相关
    easyui grid中翻页多选方法
    easyui combobox筛选(拼音)
    wpf图片切换,幻灯效果
    openfire搭建IM
  • 原文地址:https://www.cnblogs.com/AcceptedLin/p/9778929.html
Copyright © 2020-2023  润新知