Documentations | Installation | Parameters | Python (scikit-learn) interface
The mission of ThunderGBM is to help users easily and efficiently apply GBDTs and Random Forests to solve problems. ThunderGBM exploits GPUs to achieve high efficiency. Key features of ThunderGBM are as follows.
- Often by 10x times over other libraries.
- Support Python (scikit-learn) interfaces.
- Supported Operating System(s): Linux.
- Support classification, regression and ranking.
Why accelerate GBDT and Random Forests: A survey conducted by Kaggle in 2017 shows that 50%, 46% and 24% of the data mining and machine learning practitioners are users of Decision Trees, Random Forests and GBMs, respectively.
GBDTs and Random Forests are often used for creating state-of-the-art data science solutions. We've listed three winning solutions using GBDTs below. Please check out the XGBoost website for more winning solutions and use cases. Here are some example successes of GDBTs and Random Forests:
- Halla Yang, 2nd place, Recruit Coupon Purchase Prediction Challenge, Kaggle interview.
- Owen Zhang, 1st place, Avito Context Ad Clicks competition, Kaggle interview.
- Keiichi Kuroyanagi, 2nd place, Airbnb New User Bookings, Kaggle interview.
git clone https://github.com/zeyiwen/thundergbm.git
cd thundergbm
#under the directory of thundergbm
git submodule init cub && git submodule update
#under the directory of thundergbm
mkdir build && cd build && cmake .. && make -j
./bin/thundergbm-train ../dataset/machine.conf
./bin/thundergbm-predict ../dataset/machine.conf
You will see RMSE = 0.489562
after successful running.
If you use ThunderGBM in your paper, please cite our work (preprint).
@article{wenthundergbm19,
author = {Wen, Zeyi and Shi, Jiashuai and He, Bingsheng and Li, Qinbin and Chen, Jian},
title = {{ThunderGBM}: Fast {GBDTs} and Random Forests on {GPUs}},
journal = {To appear in arXiv},
year = {2019}
}
- Zeyi Wen, Bingsheng He, Kotagiri Ramamohanarao, Shengliang Lu, and Jiashuai Shi. Efficient Gradient Boosted Decision Tree Training on GPUs. The 32nd IEEE International Parallel and Distributed Processing Symposium (IPDPS), pages 234-243, 2018. pdf
- Zeyi Wen, NUS
- Jiashuai Shi, SCUT (a visiting student at NUS)
- Qinbin Li, NUS
- Advisor: Bingsheng He, NUS
- Collaborators: Jian Chen (SCUT), Kotagiri Ramamohanarao (The University of Melbourne)
- This work is supported by a MoE AcRF Tier 2 grant (MOE2017-T2-1-122) and an NUS startup grant in Singapore.
- ThunderSVM, which is another Thunder serier software tool developed by our group.
- XGBoost | LightGBM | CatBoost | cuML