Features.rst 11.9 KB
Newer Older
1
2
3
Features
========

4
This is a conceptual overview of how LightGBM works\ `[1] <#references>`__. We assume familiarity with decision tree boosting algorithms to focus instead on aspects of LightGBM that may differ from other boosting packages. For detailed algorithms, please refer to the citations or source code.
5
6
7
8

Optimization in Speed and Memory Usage
--------------------------------------

9
Many boosting tools use pre-sort-based algorithms\ `[2, 3] <#references>`__ (e.g. default algorithm in xgboost) for decision tree learning. It is a simple solution, but not easy to optimize.
10

11
LightGBM uses histogram-based algorithms\ `[4, 5, 6] <#references>`__, which bucket continuous feature (attribute) values into discrete bins. This speeds up training and reduces memory usage. Advantages of histogram-based algorithms include the following:
12

13
-  **Reduced cost of calculating the gain for each split**
14

15
   -  Pre-sort-based algorithms have time complexity ``O(#data)``
16

17
   -  Computing the histogram has time complexity ``O(#data)``, but this involves only a fast sum-up operation. Once the histogram is constructed, a histogram-based algorithm has time complexity ``O(#bins)``, and ``#bins`` is far smaller than ``#data``.
18

19
-  **Use histogram subtraction for further speedup**
20

21
   -  To get one leaf's histograms in a binary tree, use the histogram subtraction of its parent and its neighbor
22

23
   -  So it needs to construct histograms for only one leaf (with smaller ``#data`` than its neighbor). It then can get histograms of its neighbor by histogram subtraction with small cost (``O(#bins)``)
Darío Hereñú's avatar
Darío Hereñú committed
24
   
25
26
-  **Reduce memory usage**

27
   -  Replaces continuous values with discrete bins. If ``#bins`` is small, can use small data type, e.g. uint8\_t, to store training data
28
29
30

   -  No need to store additional information for pre-sorting feature values

31
-  **Reduce communication cost for distributed learning**
32
33
34
35

Sparse Optimization
-------------------

36
-  Need only ``O(2 * #non_zero_data)`` to construct histogram for sparse features
37
38
39
40
41
42
43

Optimization in Accuracy
------------------------

Leaf-wise (Best-first) Tree Growth
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

44
Most decision tree learning algorithms grow trees by level (depth)-wise, like the following image:
45
46
47
48

.. image:: ./_static/images/level-wise.png
   :align: center

49
50
LightGBM grows trees leaf-wise (best-first)\ `[7] <#references>`__. It will choose the leaf with max delta loss to grow.
Holding ``#leaf`` fixed, leaf-wise algorithms tend to achieve lower loss than level-wise algorithms.
51

52
Leaf-wise may cause over-fitting when ``#data`` is small, so LightGBM includes the ``max_depth`` parameter to limit tree depth. However, trees still grow leaf-wise even when ``max_depth`` is specified.
53
54
55
56
57
58
59

.. image:: ./_static/images/leaf-wise.png
   :align: center

Optimal Split for Categorical Features
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

60
It is common to represent categorical features with one-hot encoding, but this approach is suboptimal for tree learners. Particularly for high-cardinality categorical features, a tree built on one-hot features tends to be unbalanced and needs to grow very deep to achieve good accuracy.
61

62
63
Instead of one-hot encoding, the optimal solution is to split on a categorical feature by partitioning its categories into 2 subsets. If the feature has ``k`` categories, there are ``2^(k-1) - 1`` possible partitions.
But there is an efficient solution for regression trees\ `[8] <#references>`__. It needs about ``O(k * log(k))`` to find the optimal partition.
64

65
66
The basic idea is to sort the categories according to the training objective at each split.
More specifically, LightGBM sorts the histogram (for a categorical feature) according to its accumulated values (``sum_gradient / sum_hessian``) and then finds the best split on the sorted histogram.
67
68
69
70

Optimization in Network Communication
-------------------------------------

71
It only needs to use some collective communication algorithms, like "All reduce", "All gather" and "Reduce scatter", in distributed learning of LightGBM.
72
LightGBM implements state-of-art algorithms\ `[9] <#references>`__.
73
74
These collective communication algorithms can provide much better performance than point-to-point communication.

75
76
77
78
.. _Optimization in Parallel Learning:

Optimization in Distributed Learning
------------------------------------
79

80
LightGBM provides the following distributed learning algorithms.
81
82
83
84
85
86
87

Feature Parallel
~~~~~~~~~~~~~~~~

Traditional Algorithm
^^^^^^^^^^^^^^^^^^^^^

88
Feature parallel aims to parallelize the "Find Best Split" in the decision tree. The procedure of traditional feature parallel is:
89

90
1. Partition data vertically (different machines have different feature set).
91

92
2. Workers find local best split point {feature, threshold} on local feature set.
93

94
3. Communicate local best splits with each other and get the best one.
95

96
4. Worker with best split to perform split, then send the split result of data to other workers.
97

98
5. Other workers split data according to received data.
99

100
The shortcomings of traditional feature parallel:
101
102
103
104

-  Has computation overhead, since it cannot speed up "split", whose time complexity is ``O(#data)``.
   Thus, feature parallel cannot speed up well when ``#data`` is large.

105
-  Need communication of split result, which costs about ``O(#data / 8)`` (one bit for one data).
106
107
108
109

Feature Parallel in LightGBM
^^^^^^^^^^^^^^^^^^^^^^^^^^^^

110
111
112
Since feature parallel cannot speed up well when ``#data`` is large, we make a little change: instead of partitioning data vertically, every worker holds the full data.
Thus, LightGBM doesn't need to communicate for split result of data since every worker knows how to split data.
And ``#data`` won't be larger, so it is reasonable to hold the full data in every machine.
113
114
115

The procedure of feature parallel in LightGBM:

116
1. Workers find local best split point {feature, threshold} on local feature set.
117

118
2. Communicate local best splits with each other and get the best one.
119

120
3. Perform best split.
121
122
123
124
125
126
127
128
129
130

However, this feature parallel algorithm still suffers from computation overhead for "split" when ``#data`` is large.
So it will be better to use data parallel when ``#data`` is large.

Data Parallel
~~~~~~~~~~~~~

Traditional Algorithm
^^^^^^^^^^^^^^^^^^^^^

131
Data parallel aims to parallelize the whole decision learning. The procedure of data parallel is:
132

133
1. Partition data horizontally.
134

135
2. Workers use local data to construct local histograms.
136

137
3. Merge global histograms from all local histograms.
138

139
4. Find best split from merged global histograms, then perform splits.
140

141
The shortcomings of traditional data parallel:
142
143
144

-  High communication cost.
   If using point-to-point communication algorithm, communication cost for one machine is about ``O(#machine * #feature * #bin)``.
145
   If using collective communication algorithm (e.g. "All Reduce"), communication cost is about ``O(2 * #feature * #bin)`` (check cost of "All Reduce" in chapter 4.5 at `[9] <#references>`__).
146
147
148
149
150
151

Data Parallel in LightGBM
^^^^^^^^^^^^^^^^^^^^^^^^^

We reduce communication cost of data parallel in LightGBM:

152
1. Instead of "Merge global histograms from all local histograms", LightGBM uses "Reduce Scatter" to merge histograms of different (non-overlapping) features for different workers.
153
   Then workers find the local best split on local merged histograms and sync up the global best split.
154

155
2. As aforementioned, LightGBM uses histogram subtraction to speed up training.
156
157
   Based on this, we can communicate histograms only for one leaf, and get its neighbor's histograms by subtraction as well.

158
All things considered, data parallel in LightGBM has time complexity ``O(0.5 * #feature * #bin)``.
159
160
161
162

Voting Parallel
~~~~~~~~~~~~~~~

163
164
Voting parallel further reduces the communication cost in `Data Parallel <#data-parallel>`__ to constant cost.
It uses two-stage voting to reduce the communication cost of feature histograms\ `[10] <#references>`__.
165
166
167
168

GPU Support
-----------

169
Thanks `@huanzhang12 <https://github.com/huanzhang12>`__ for contributing this feature. Please read `[11] <#references>`__ to get more details.
170
171
172
173
174
175
176
177

- `GPU Installation <./Installation-Guide.rst#build-gpu-version>`__

- `GPU Tutorial <./GPU-Tutorial.rst>`__

Applications and Metrics
------------------------

178
LightGBM supports the following applications:
179
180
181
182
183
184
185

-  regression, the objective function is L2 loss

-  binary classification, the objective function is logloss

-  multi classification

186
-  cross-entropy, the objective function is logloss and supports training on non-binary labels
187

188
189
-  lambdarank, the objective function is lambdarank with NDCG

190
LightGBM supports the following metrics:
191
192
193
194
195
196
197
198
199
200
201
202
203

-  L1 loss

-  L2 loss

-  Log loss

-  Classification error rate

-  AUC

-  NDCG

204
205
-  MAP

206
-  Multi-class log loss
207

208
-  Multi-class error rate
209

210
211
212
213
-  AUC-mu ``(new in v3.0.0)``

-  Average precision ``(new in v3.1.0)``

214
215
216
217
218
219
220
221
222
223
-  Fair

-  Huber

-  Poisson

-  Quantile

-  MAPE

224
-  Kullback-Leibler
225

Guolin Ke's avatar
Guolin Ke committed
226
227
228
229
-  Gamma

-  Tweedie

230
231
232
233
234
235
236
237
238
239
240
241
242
For more details, please refer to `Parameters <./Parameters.rst#metric-parameters>`__.

Other Features
--------------

-  Limit ``max_depth`` of tree while grows tree leaf-wise

-  `DART <https://arxiv.org/abs/1505.01866>`__

-  L1/L2 regularization

-  Bagging

243
-  Column (feature) sub-sample
244
245
246
247
248
249
250
251
252

-  Continued train with input GBDT model

-  Continued train with the input score file

-  Weighted training

-  Validation metric output during training

253
-  Multiple validation data
254

255
-  Multiple metrics
256
257
258
259
260
261
262
263
264
265

-  Early stopping (both training and prediction)

-  Prediction for leaf index

For more details, please refer to `Parameters <./Parameters.rst>`__.

References
----------

266
[1] Guolin Ke, Qi Meng, Thomas Finley, Taifeng Wang, Wei Chen, Weidong Ma, Qiwei Ye, Tie-Yan Liu. "`LightGBM\: A Highly Efficient Gradient Boosting Decision Tree`_." Advances in Neural Information Processing Systems 30 (NIPS 2017), pp. 3149-3157.
267

268
[2] Mehta, Manish, Rakesh Agrawal, and Jorma Rissanen. "SLIQ: A fast scalable classifier for data mining." International Conference on Extending Database Technology. Springer Berlin Heidelberg, 1996.
269

270
[3] Shafer, John, Rakesh Agrawal, and Manish Mehta. "SPRINT: A scalable parallel classifier for data mining." Proc. 1996 Int. Conf. Very Large Data Bases. 1996.
271

272
[4] Ranka, Sanjay, and V. Singh. "CLOUDS: A decision tree classifier for large datasets." Proceedings of the 4th Knowledge Discovery and Data Mining Conference. 1998.
273

274
[5] Machado, F. P. "Communication and memory efficient parallel decision tree construction." (2003).
275

276
[6] Li, Ping, Qiang Wu, and Christopher J. Burges. "Mcrank: Learning to rank using multiple classification and gradient boosting." Advances in Neural Information Processing Systems 20 (NIPS 2007).
277

278
[7] Shi, Haijian. "Best-first decision tree learning." Diss. The University of Waikato, 2007.
279

280
[8] Walter D. Fisher. "`On Grouping for Maximum Homogeneity`_." Journal of the American Statistical Association. Vol. 53, No. 284 (Dec., 1958), pp. 789-798.
281

282
[9] Thakur, Rajeev, Rolf Rabenseifner, and William Gropp. "`Optimization of collective communication operations in MPICH`_." International Journal of High Performance Computing Applications 19.1 (2005), pp. 49-66.
283

284
[10] Qi Meng, Guolin Ke, Taifeng Wang, Wei Chen, Qiwei Ye, Zhi-Ming Ma, Tie-Yan Liu. "`A Communication-Efficient Parallel Algorithm for Decision Tree`_." Advances in Neural Information Processing Systems 29 (NIPS 2016), pp. 1279-1287.
285

286
[11] Huan Zhang, Si Si and Cho-Jui Hsieh. "`GPU Acceleration for Large-scale Tree Boosting`_." SysML Conference, 2018.
287
288

.. _LightGBM\: A Highly Efficient Gradient Boosting Decision Tree: https://papers.nips.cc/paper/6907-lightgbm-a-highly-efficient-gradient-boosting-decision-tree.pdf
289

290
.. _On Grouping for Maximum Homogeneity: https://www.tandfonline.com/doi/abs/10.1080/01621459.1958.10501479
291

Nikita Titov's avatar
Nikita Titov committed
292
.. _Optimization of collective communication operations in MPICH: https://www.mcs.anl.gov/~thakur/papers/ijhpca-coll.pdf
293
294
295
296

.. _A Communication-Efficient Parallel Algorithm for Decision Tree: http://papers.nips.cc/paper/6381-a-communication-efficient-parallel-algorithm-for-decision-tree

.. _GPU Acceleration for Large-scale Tree Boosting: https://arxiv.org/abs/1706.08359