XGBoost

From Wikipedia, the free encyclopedia
XGBoost
XGBoost logo.png
Developer(s)The XGBoost Contributors
Initial releaseMarch 27, 2014; 7 years ago (2014-03-27)
Stable release
1.4.0[1] / April 10, 2021; 10 months ago (2021-04-10)
Repository
Written inC++
Operating systemLinux, macOS, Windows
TypeMachine learning
LicenseApache License 2.0
Websitexgboost.ai

XGBoost[2] is an open-source software library which provides a regularizing gradient boosting framework for C++, Java, Python,[3] R,[4] Julia,[5] Perl,[6] and Scala. It works on Linux, Windows,[7] and macOS.[8] From the project description, it aims to provide a "Scalable, Portable and Distributed Gradient Boosting (GBM, GBRT, GBDT) Library". It runs on a single machine, as well as the distributed processing frameworks Apache Hadoop, Apache Spark, Apache Flink, and Dask.[9][10]

It has gained much popularity and attention recently as the algorithm of choice for many winning teams of machine learning competitions.[11]

History[]

XGBoost initially started as a research project by Tianqi Chen[12] as part of the Distributed (Deep) Machine Learning Community (DMLC) group. Initially, it began as a terminal application which could be configured using a libsvm configuration file. It became well known in the ML competition circles after its use in the winning solution of the Higgs Machine Learning Challenge. Soon after, the Python and R packages were built, and XGBoost now has package implementations for Java, Scala, Julia, Perl, and other languages. This brought the library to more developers and contributed to its popularity among the Kaggle community, where it has been used for a large number of competitions.[11]

It was soon integrated with a number of other packages making it easier to use in their respective communities. It has now been integrated with scikit-learn for Python users and with the caret package for R users. It can also be integrated into Data Flow frameworks like Apache Spark, Apache Hadoop, and Apache Flink using the abstracted Rabit[13] and XGBoost4J.[14] XGBoost is also available on OpenCL for FPGAs.[15] An efficient, scalable implementation of XGBoost has been published by Tianqi Chen and Carlos Guestrin.[16]

While XGBoost model often achieves higher accuracy than a single decision tree, it sacrifices the intrinsic interpretability of decision trees.  For example, following the path that a decision tree takes to make its decision is trivial and self-explained, but following the paths of hundreds or thousands of trees is much harder. To achieve both performance and interpretability, some model compression techniques allow transforming an XGBoost into a single "born-again" decision tree that approximates the same decision function.[17]

Features[]

Salient features of XGBoost which make it different from other gradient boosting algorithms include:[18][19][20]

The algorithm[]

XGBoost works as Newton Raphson in function space unlike gradient boosting that works as gradient descent in function space, a second order Taylor approximation is used in the loss function to make the connection to Newton Raphson method.

A generic unregularized XGBoost algorithm is:

Input: training set , a differentiable loss function , a number of weak learners and a learning rate .

Algorithm:

  1. Initialize model with a constant value:
  2. For m = 1 to M:
    1. Compute the 'gradients' and 'hessians':
    2. Fit a base learner (or weak learner, e.g. tree) using the training set by solving the optimization problem below:
    3. Update the model:
  3. Output

Awards[]

  • John Chambers Award (2016)[21]
  • High Energy Physics meets Machine Learning award (HEP meets ML) (2016)[22]

See also[]

References[]

  1. ^ "Release 1.4.0 · dmlc/xgboost". GitHub. Retrieved 2021-05-13.
  2. ^ "GitHub project webpage".
  3. ^ "Python Package Index PYPI: xgboost". Retrieved 2016-08-01.
  4. ^ "CRAN package xgboost". Retrieved 2016-08-01.
  5. ^ "Julia package listing xgboost". Retrieved 2016-08-01.
  6. ^ "CPAN module AI::XGBoost". Retrieved 2020-02-09.
  7. ^ "Installing XGBoost for Anaconda in Windows". Retrieved 2016-08-01.
  8. ^ "Installing XGBoost on Mac OSX". Retrieved 2016-08-01.
  9. ^ "Dask Homepage".{{cite web}}: CS1 maint: url-status (link)
  10. ^ "Distributed XGBoost with Dask — xgboost 1.5.0-dev documentation". xgboost.readthedocs.io. Retrieved 2021-07-15.
  11. ^ a b "XGBoost - ML winning solutions (incomplete list)". Retrieved 2016-08-01.
  12. ^ "Story and Lessons behind the evolution of XGBoost". Retrieved 2016-08-01.
  13. ^ "Rabit - Reliable Allreduce and Broadcast Interface". Retrieved 2016-08-01.
  14. ^ "XGBoost4J". Retrieved 2016-08-01.
  15. ^ "XGBoost on FPGAs". Retrieved 2019-08-01.
  16. ^ Chen, Tianqi; Guestrin, Carlos (2016). "XGBoost: A Scalable Tree Boosting System". In Krishnapuram, Balaji; Shah, Mohak; Smola, Alexander J.; Aggarwal, Charu C.; Shen, Dou; Rastogi, Rajeev (eds.). Proceedings of the 22nd ACM SIGKDD International Conference on Knowledge Discovery and Data Mining, San Francisco, CA, USA, August 13-17, 2016. ACM. pp. 785–794. arXiv:1603.02754. doi:10.1145/2939672.2939785.
  17. ^ Sagi, Omer; Rokach, Lior (2021). "Approximating XGBoost with an interpretable decision tree". Information Sciences. 572 (2021): 522-542. doi:10.1016/j.ins.2021.05.055.
  18. ^ Gandhi, Rohith (2019-05-24). "Gradient Boosting and XGBoost". Medium. Retrieved 2020-01-04.
  19. ^ "Boosting algorithm: XGBoost". Towards Data Science. 2017-05-14. Retrieved 2020-01-04.
  20. ^ "Tree Boosting With XGBoost – Why Does XGBoost Win "Every" Machine Learning Competition?". Synced. 2017-10-22. Retrieved 2020-01-04.
  21. ^ "John Chambers Award Previous Winners". Retrieved 2016-08-01.
  22. ^ "HEP meets ML Award". Retrieved 2016-08-01.


Retrieved from ""