koptimizer/my_PaperLog

LightGBM: A Highly Efficient Gradient Boosting Decision Tree

Opened this issue ยท 0 comments

๐Ÿ“‹ ๋…ผ๋ฌธ์˜ ์ •๋ณด๋ฅผ ์•Œ๋ ค์ฃผ์„ธ์š”.

  • LightGBM: A Highly Efficient Gradient Boosting Decision Tree
  • Guolin Ke et al
  • 31st Conference on Neural Information Processing Systems (NIPS 2017), Long Beach, CA, USA.
  • 2017

๐Ÿ“ƒ Abstract

Gradient Boosting Decision Tree (GBDT) is a popular machine learning algorithm, and has quite a few effective implementations such as XGBoost and pGBRT. Although many engineering optimizations have been adopted in these implementations, the efficiency and scalability are still unsatisfactory when the feature dimension is high and data size is large. A major reason is that for each feature, they need to scan all the data instances to estimate the information gain of all possible split points, which is very time consuming. To tackle this problem, we propose two novel techniques: Gradient-based One-Side Sampling (GOSS) and Exclusive Feature Bundling (EFB). With GOSS, we exclude a significant proportion of data instances with small gradients, and only use the rest to estimate the information gain. We prove that, since the data instances with larger gradients play a more important role in the computation of information gain, GOSS can obtain quite accurate estimation of the information gain with a much smaller data size. With EFB, we bundle mutually exclusive features (i.e., they rarely take nonzero values simultaneously), to reduce the number of features. We prove that finding the optimal bundling of exclusive features is NP-hard, but a greedy algorithm can achieve quite good approximation ratio (and thus can effectively reduce the number of features without hurting the accuracy of split point determination by much). We call our new GBDT implementation with GOSS and EFB LightGBM. Our experiments on multiple public datasets show that, LightGBM speeds up the training process of conventional GBDT by up to over 20 times while achieving almost the same accuracy.

๐Ÿ”Ž ์–ด๋–ค ๋…ผ๋ฌธ์ธ์ง€ ์†Œ๊ฐœํ•ด์ฃผ์„ธ์š”.

  • XGBoost๊ฐ™์€ ํ›Œ๋ฅญํ•œ ๋จธ์‹ ๋Ÿฌ๋‹ ํ”„๋ ˆ์ž„์›์ด ์ถœ์‹œ๋˜์—ˆ์ง€๋งŒ, ์•„์ง ์†๋„์˜ ํ•œ๊ณ„๊ฐ€ ์žˆ์—ˆ์Šต๋‹ˆ๋‹ค. LGBM์ด ์–ด๋–ค ๋ฐฉ์‹์œผ๋กœ ํ•ด๊ฒฐํ•˜์˜€๋Š”์ง€ ์•Œ์•„๋ณด๋ ค๊ณ  ํ•ฉ๋‹ˆ๋‹ค.

๐Ÿ”‘ ํ•ต์‹ฌ ํ‚ค์›Œ๋“œ๋ฅผ ์ ์–ด์ฃผ์„ธ์š”.

  • GOSS, EFB, LightGBM

๐Ÿ“Ž URL