Gradient boosting

From testwiki
Jump to navigation Jump to search

Template:Short description Template:Machine learning bar Gradient boosting is a machine learning technique based on boosting in a functional space, where the target is pseudo-residuals instead of residuals as in traditional boosting. It gives a prediction model in the form of an ensemble of weak prediction models, i.e., models that make very few assumptions about the data, which are typically simple decision trees.[1][2] When a decision tree is the weak learner, the resulting algorithm is called gradient-boosted trees; it usually outperforms random forest.[1] As with other boosting methods, a gradient-boosted trees model is built in stages, but it generalizes the other methods by allowing optimization of an arbitrary differentiable loss function.

History

The idea of gradient boosting originated in the observation by Leo Breiman that boosting can be interpreted as an optimization algorithm on a suitable cost function.[3] Explicit regression gradient boosting algorithms were subsequently developed, by Jerome H. Friedman,[4][2] (in 1999 and later in 2001) simultaneously with the more general functional gradient boosting perspective of Llew Mason, Jonathan Baxter, Peter Bartlett and Marcus Frean.[5][6] The latter two papers introduced the view of boosting algorithms as iterative functional gradient descent algorithms. That is, algorithms that optimize a cost function over function space by iteratively choosing a function (weak hypothesis) that points in the negative gradient direction. This functional gradient view of boosting has led to the development of boosting algorithms in many areas of machine learning and statistics beyond regression and classification.

Informal introduction

(This section follows the exposition by Cheng Li.[7])

Like other boosting methods, gradient boosting combines weak "learners" into a single strong learner iteratively. It is easiest to explain in the least-squares regression setting, where the goal is to teach a model F to predict values of the form y^=F(x) by minimizing the mean squared error 1ni(y^iyi)2, where i indexes over some training set of size n of actual values of the output variable y:

  • y^i= the predicted value F(xi)
  • yi= the observed value
  • n= the number of samples in y

If the algorithm has M stages, at each stage m (1mM), suppose some imperfect model Fm (for low m, this model may simply predict y^i to be yΒ―, the mean of y). In order to improve Fm, our algorithm should add some new estimator, hm(x). Thus,

Fm+1(xi)=Fm(xi)+hm(xi)=yi

or, equivalently,

hm(xi)=yiFm(xi).

Therefore, gradient boosting will fit hm to the residual yiFm(xi). As in other boosting variants, each Fm+1 attempts to correct the errors of its predecessor Fm. A generalization of this idea to loss functions other than squared error, and to classification and ranking problems, follows from the observation that residuals hm(xi) for a given model are proportional to the negative gradients of the mean squared error (MSE) loss function (with respect to F(xi)):

LMSE=1ni=1n(yiF(xi))2
LMSEF(xi)=2n(yiF(xi))=2nhm(xi).

So, gradient boosting could be generalized to a gradient descent algorithm by plugging in a different loss and its gradient.

Algorithm

Many supervised learning problems involve an output variable Template:Mvar and a vector of input variables Template:Mvar, related to each other with some probabilistic distribution. The goal is to find some function F^(x) that best approximates the output variable from the values of input variables. This is formalized by introducing some loss function L(y,F(x)) and minimizing it in expectation:

F^=argminF𝔼x,y[L(y,F(x))].

The gradient boosting method assumes a real-valued Template:Mvar. It seeks an approximation F^(x) in the form of a weighted sum of Template:Mvar functions hm(x) from some class β„‹, called base (or weak) learners:

F^(x)=m=1Mγmhm(x)+const.

We are usually given a training set {(x1,y1),,(xn,yn)} of known values of Template:Mvar and corresponding values of Template:Mvar. In accordance with the empirical risk minimization principle, the method tries to find an approximation F^(x) that minimizes the average value of the loss function on the training set, i.e., minimizes the empirical risk. It does so by starting with a model, consisting of a constant function F0(x), and incrementally expands it in a greedy fashion:

F0(x)=argminhmβ„‹i=1nL(yi,hm(xi)),
Fm(x)=Fm1(x)+(argminhmβ„‹[i=1nL(yi,Fm1(xi)+hm(xi))])(x),

for m1, where hmβ„‹ is a base learner function.

Unfortunately, choosing the best function hm at each step for an arbitrary loss function Template:Mvar is a computationally infeasible optimization problem in general. Therefore, we restrict our approach to a simplified version of the problem. The idea is to apply a steepest descent step to this minimization problem (functional gradient descent). The basic idea is to find a local minimum of the loss function by iterating on Fm1(x). In fact, the local maximum-descent direction of the loss function is the negative gradient.[8] Hence, moving a small amount γ such that the linear approximation remains valid:

Fm(x)=Fm1(x)γi=1nFm1L(yi,Fm1(xi))

where γ>0. For small γ, this implies that L(yi,Fm(xi))L(yi,Fm1(xi)).

Template:Collapse topTo prove the following, consider the objective O=i=1nL(yi,Fm1(xi)+hm(xi))

Doing a Taylor expansion around the fixed point Fm1(xi) up to first order O=i=1nL(yi,Fm1(xi)+hm(xi))i=1nL(yi,Fm1(xi))+hm(xi)Fm1L(yi,Fm1(xi))+

Now differentiating w.r.t to hm(xi), only the derivative of the second term remains Fm1L(yi,Fm1(xi)). This is the direction of steepest ascent and hence we must move in the opposite (i.e., negative) direction in order to move in the direction of steepest descent.

Template:Collapse bottom

Furthermore, we can optimize γ by finding the γ value for which the loss function has a minimum:

γm=argminγi=1nL(yi,Fm(xi))=argminγi=1nL(yi,Fm1(xi)γFm1L(yi,Fm1(xi))).

If we considered the continuous case, i.e., where β„‹ is the set of arbitrary differentiable functions on ℝ, we would update the model in accordance with the following equations

Fm(x)=Fm1(x)γmi=1nFm1L(yi,Fm1(xi))

where γm is the step length, defined as γm=argminγi=1nL(yi,Fm1(xi)γFm1L(yi,Fm1(xi))). In the discrete case however, i.e. when the set β„‹ is finiteTemplate:Clarify, we choose the candidate function Template:Mvar closest to the gradient of Template:Mvar for which the coefficient Template:Mvar may then be calculated with the aid of line search on the above equations. Note that this approach is a heuristic and therefore doesn't yield an exact solution to the given problem, but rather an approximation. In pseudocode, the generic gradient boosting method is:[4][1] Template:Framebox Input: training set {(xi,yi)}i=1n, a differentiable loss function L(y,F(x)), number of iterations Template:Mvar.

Algorithm:

  1. Initialize model with a constant value:
    F0(x)=argminγi=1nL(yi,γ).
  2. For Template:Mvar = 1 to Template:Mvar:
    1. Compute so-called pseudo-residuals:
      rim=[L(yi,F(xi))F(xi)]F(x)=Fm1(x)for i=1,,n.
    2. Fit a base learner (or weak learner, e.g. tree) closed under scaling hm(x) to pseudo-residuals, i.e. train it using the training set {(xi,rim)}i=1n.
    3. Compute multiplier γm by solving the following one-dimensional optimization problem:
      γm=argminγi=1nL(yi,Fm1(xi)+γhm(xi)).
    4. Update the model:
      Fm(x)=Fm1(x)+γmhm(x).
  3. Output FM(x).

Template:Frame-footer

Gradient tree boosting

Gradient boosting is typically used with decision trees (especially CARTs) of a fixed size as base learners. For this special case, Friedman proposes a modification to gradient boosting method which improves the quality of fit of each base learner.

Generic gradient boosting at the m-th step would fit a decision tree hm(x) to pseudo-residuals. Let Jm be the number of its leaves. The tree partitions the input space into Jm disjoint regions R1m,,RJmm and predicts a constant value in each region. Using the indicator notation, the output of hm(x) for input x can be written as the sum:

hm(x)=j=1Jmbjm𝟏Rjm(x),

where bjm is the value predicted in the region Rjm.[9]

Then the coefficients bjm are multiplied by some value γm, chosen using line search so as to minimize the loss function, and the model is updated as follows:

Fm(x)=Fm1(x)+γmhm(x),γm=argminγi=1nL(yi,Fm1(xi)+γhm(xi)).

Friedman proposes to modify this algorithm so that it chooses a separate optimal value γjm for each of the tree's regions, instead of a single γm for the whole tree. He calls the modified algorithm "TreeBoost". The coefficients bjm from the tree-fitting procedure can be then simply discarded and the model update rule becomes:

Fm(x)=Fm1(x)+j=1Jmγjm𝟏Rjm(x),γjm=argminγxiRjmL(yi,Fm1(xi)+γ).

When the loss L(,) is mean-squared error (MSE) the coefficients γjm coincide with the coefficients of the tree-fitting procedure bjm.

Tree size

The number J of terminal nodes in the trees is a parameter which controls the maximum allowed level of interaction between variables in the model. With J=2 (decision stumps), no interaction between variables is allowed. With J=3 the model may include effects of the interaction between up to two variables, and so on. J can be adjusted for a data set at hand.

Hastie et al.[1] comment that typically 4J8 work well for boosting and results are fairly insensitive to the choice of J in this range, J=2 is insufficient for many applications, and J>10 is unlikely to be required.

Regularization

Fitting the training set too closely can lead to degradation of the model's generalization ability, that is, its performance on unseen examples. Several so-called regularization techniques reduce this overfitting effect by constraining the fitting procedure.

One natural regularization parameter is the number of gradient boosting iterations M (i.e. the number of base models). Increasing M reduces the error on training set, but increases risk of overfitting. An optimal value of M is often selected by monitoring prediction error on a separate validation data set.

Another regularization parameter for tree boosting is tree depth. The higher this value the more likely the model will overfit the training data.

Shrinkage

An important part of gradient boosting is regularization by shrinkage which uses a modified update rule:

Fm(x)=Fm1(x)+νγmhm(x),0<ν1,

where parameter ν is called the "learning rate".

Empirically, it has been found that using small learning rates (such as ν<0.1) yields dramatic improvements in models' generalization ability over gradient boosting without shrinking (ν=1).[1] However, it comes at the price of increasing computational time both during training and querying: lower learning rate requires more iterations.

Stochastic gradient boosting

Soon after the introduction of gradient boosting, Friedman proposed a minor modification to the algorithm, motivated by Breiman's bootstrap aggregation ("bagging") method.[2] Specifically, he proposed that at each iteration of the algorithm, a base learner should be fit on a subsample of the training set drawn at random without replacement.[10] Friedman observed a substantial improvement in gradient boosting's accuracy with this modification.

Subsample size is some constant fraction f of the size of the training set. When f=1, the algorithm is deterministic and identical to the one described above. Smaller values of f introduce randomness into the algorithm and help prevent overfitting, acting as a kind of regularization. The algorithm also becomes faster, because regression trees have to be fit to smaller datasets at each iteration. Friedman[2] obtained that 0.5f0.8 leads to good results for small and moderate sized training sets. Therefore, f is typically set to 0.5, meaning that one half of the training set is used to build each base learner.

Also, like in bagging, subsampling allows one to define an out-of-bag error of the prediction performance improvement by evaluating predictions on those observations which were not used in the building of the next base learner. Out-of-bag estimates help avoid the need for an independent validation dataset, but often underestimate actual performance improvement and the optimal number of iterations.[11][12]

Number of observations in leaves

Gradient tree boosting implementations often also use regularization by limiting the minimum number of observations in trees' terminal nodes. It is used in the tree building process by ignoring any splits that lead to nodes containing fewer than this number of training set instances.

Imposing this limit helps to reduce variance in predictions at leaves.

Complexity penalty

Another useful regularization technique for gradient boosted model is to penalize its complexity.[13] For gradient boosted trees, model complexity can be defined as the proportionalTemplate:Clarify number of leaves in the trees. The joint optimization of loss and model complexity corresponds to a post-pruning algorithm to remove branches that fail to reduce the loss by a threshold.

Other kinds of regularization such as an 2 penalty on the leaf values can also be used to avoid overfitting.

Usage

Gradient boosting can be used in the field of learning to rank. The commercial web search engines Yahoo[14] and Yandex[15] use variants of gradient boosting in their machine-learned ranking engines. Gradient boosting is also utilized in High Energy Physics in data analysis. At the Large Hadron Collider (LHC), variants of gradient boosting Deep Neural Networks (DNN) were successful in reproducing the results of non-machine learning methods of analysis on datasets used to discover the Higgs boson.[16] Gradient boosting decision tree was also applied in earth and geological studies – for example quality evaluation of sandstone reservoir.[17]

Names

The method goes by a variety of names. Friedman introduced his regression technique as a "Gradient Boosting Machine" (GBM).[4] Mason, Baxter et al. described the generalized abstract class of algorithms as "functional gradient boosting".[5][6] Friedman et al. describe an advancement of gradient boosted models as Multiple Additive Regression Trees (MART);[18] Elith et al. describe that approach as "Boosted Regression Trees" (BRT).[19]

A popular open-source implementation for R calls it a "Generalized Boosting Model",[11] however packages expanding this work use BRT.[20] Yet another name is TreeNet, after an early commercial implementation from Salford System's Dan Steinberg, one of researchers who pioneered the use of tree-based methods.[21]

Feature importance ranking

Gradient boosting can be used for feature importance ranking, which is usually based on aggregating importance function of the base learners.[22] For example, if a gradient boosted trees algorithm is developed using entropy-based decision trees, the ensemble algorithm ranks the importance of features based on entropy as well with the caveat that it is averaged out over all base learners.[22][1]

Disadvantages

While boosting can increase the accuracy of a base learner, such as a decision tree or linear regression, it sacrifices intelligibility and interpretability.[22][23] 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.[24] Furthermore, its implementation may be more difficult due to the higher computational demand.

See also

References

Template:Reflist

Further reading

  1. ↑ 1.0 1.1 1.2 1.3 1.4 1.5 Template:Cite book
  2. ↑ 2.0 2.1 2.2 2.3 Template:Cite web
  3. ↑ Template:Cite journal
  4. ↑ 4.0 4.1 4.2 Template:Cite web
  5. ↑ 5.0 5.1 Template:Cite conference
  6. ↑ 6.0 6.1 Template:Cite web
  7. ↑ Template:Cite web
  8. ↑ Template:Cite web
  9. ↑ Note: in case of usual CART trees, the trees are fitted using least-squares loss, and so the coefficient bjm for the region Rjm is equal to just the value of output variable, averaged over all training instances in Rjm.
  10. ↑ Note that this is different from bagging, which samples with replacement because it uses samples of the same size as the training set.
  11. ↑ 11.0 11.1 Ridgeway, Greg (2007). Generalized Boosted Models: A guide to the gbm package.
  12. ↑ Learn Gradient Boosting Algorithm for better predictions (with codes in R)
  13. ↑ Tianqi Chen. Introduction to Boosted Trees
  14. ↑ Cossock, David and Zhang, Tong (2008). Statistical Analysis of Bayes Optimal Subset Ranking Template:Webarchive, page 14.
  15. ↑ Yandex corporate blog entry about new ranking model "Snezhinsk" Template:Webarchive (in Russian)
  16. ↑ Template:Cite arXiv
  17. ↑ Template:Cite journal
  18. ↑ Template:Cite journal
  19. ↑ Template:Cite journal
  20. ↑ Template:Cite web
  21. ↑ Template:Cite web
  22. ↑ 22.0 22.1 22.2 Template:Cite journal
  23. ↑ Template:Cite journal
  24. ↑ Template:Cite journal