paper-with-me

Papers

GPU-acceleration for Large-scale Tree Boosting

2017-06-26 · Huan Zhang, Si Si, Cho-Jui Hsieh

In this paper, we present a novel massively parallel algorithm for accelerating the decision tree building procedure on GPUs (Graphics Processing Units), which is a crucial step in Gradient Boosted Decision Tree (GBDT) and random forests training. Previous GPU based tree building algorithms are based on parallel multi-scan or radix sort to find the exact tree split, and thus suffer from scalability and performance issues. We show that using a histogram based algorithm to approximately find the best split is more efficient and scalable on GPU. By identifying the difference between classical GPU-based image histogram construction and the feature histogram construction in decision tree training, we develop a fast feature histogram building kernel on GPU with carefully designed computational and memory access sequence to reduce atomic update conflict and maximize GPU utilization. Our algorithm can be used as a drop-in replacement for histogram construction in popular tree boosting systems to improve their scalability. As an example, to train GBDT on epsilon dataset, our method using a main-stream GPU is 7-8 times faster than histogram based algorithm on CPU in LightGBM and 25 times faster than the exact-split finding algorithm in XGBoost on a dual-socket 28-core Xeon server, while achieving similar prediction accuracy.

📄 PDF Abstract BibTeX arXiv:1706.08359

Code (3)

cdg1921/LightGBM
ibr11/LightGBM
perfgao/lua-ffi-lightGBM

Tasks

CPUGPU

Similar Papers 제목 키워드 기반

Benchmarking and Optimization of Gradient Boosting Decision Tree Algorithms

2018-09-12 · Andreea Anghel, Nikolaos Papandreou, Thomas Parnell, Alessandro De Palma 외

Gradient boosting decision trees (GBDTs) have seen widespread adoption in academia, industry and competitive data science due to their state-of-the-art performance in many machine learning tasks. One relative downside to…

Bayesian OptimizationBenchmarkingGPU

A Fast Sampling Gradient Tree Boosting Framework

2019-11-20 · Daniel Chao Zhou, Zhongming Jin, Tong Zhang

As an adaptive, interpretable, robust, and accurate meta-algorithm for arbitrary differentiable loss functions, gradient tree boosting is one of the most popular machine learning techniques, though the computational expe…

XGBoost: A Scalable Tree Boosting System

2016-03-09 · Tianqi Chen, Carlos Guestrin

Tree boosting is a highly effective and widely used machine learning method. In this paper, we describe a scalable end-to-end tree boosting system called XGBoost, which is used widely by data scientists to achieve state-…

BIG-bench Machine LearningClusteringData CompressionDimensionality Reduction+3

Lassoed Tree Boosting

2022-05-22 · Alejandro Schuler, Yi Li, Mark van der Laan

Gradient boosting performs exceptionally in most prediction problems and scales well to large datasets. In this paper we prove that a ``lassoed'' gradient boosted tree algorithm with early stopping achieves faster than $…

regression

BiTA: Bi-Directional Tuning for Lossless Acceleration in Large Language Models

2024-01-23 · Feng Lin, Hanling Yi, Hongbin Li, Yifan Yang 외

Large language models (LLMs) commonly employ autoregressive generation during inference, leading to high memory bandwidth demand and consequently extended latency. To mitigate this inefficiency, we present Bi-directional…