Jump to content

Bootstrap aggregating

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Anubistheunknown (talk | contribs) at 06:16, 29 November 2021 (Made a simpler example of how bootstrap, and out-of-bag datasets are created as well as its importance.). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

Bootstrap aggregating, also called bagging (from bootstrap aggregating), is a machine learning ensemble meta-algorithm designed to improve the stability and accuracy of machine learning algorithms used in statistical classification and regression. It also reduces variance and helps to avoid overfitting. Although it is usually applied to decision tree methods, it can be used with any type of method. Bagging is a special case of the model averaging approach.

Description of the technique

Given a standard training set of size n, bagging generates m new training sets , each of size n′, by sampling from D uniformly and with replacement. By sampling with replacement, some observations may be repeated in each . If n=n, then for large n the set is expected to have the fraction (1 - 1/e) (≈63.2%) of the unique examples of D, the rest being duplicates.[1] This kind of sample is known as a bootstrap sample. Sampling with replacement ensures each bootstrap is independent from its peers, as it does not depend on previous chosen samples when sampling. Then, m models are fitted using the above m bootstrap samples and combined by averaging the output (for regression) or voting (for classification).

An illustration for the concept of bootstrap aggregating


Bagging leads to "improvements for unstable procedures",[2] which include, for example, artificial neural networks, classification and regression trees, and subset selection in linear regression.[3] Bagging was shown to improve preimage learning.[4][5] On the other hand, it can mildly degrade the performance of stable methods such as K-nearest neighbors.[2]

Process of the algorithm

Key Terms:

There are three types of datasets in bootstrap aggregating. These are the original, bootstrap, and out-of-bag datasets. Each section below will explain how each dataset is made except for the original dataset. The original dataset is whatever information is given.

Creating the bootstrap dataset:

The bootstrap dataset is made by randomly picking objects from the original dataset. Also, it must be the same size as the original dataset. However, the difference is that the bootstrap dataset can have duplicate objects. Here is simple example to demonstrate how it works:

Suppose the original dataset is a group of 12 people. These guys are Emily, Jessie, George, Constantine, Lexi, Theodore, John, James, Rachel, Anthony, Ellie, and Jamal.

By randomly picking a group of names, let us say our bootstrap dataset had James, Ellie, Constantine, Lexi, John, Constantine, Theodore, Constantine, Anthony, Lexi, Constantine, and Theodore. In this case, the bootstrap sample contained four duplicates for Constantine, and two duplicates for Lexi, and Theodore. Below, is an illustration showing the two datasets:

Bootstrap Example

Creating the out-of-bag dataset:

The out-of-bag dataset represents the remaining people who are not in the bootstrap dataset. It can be calculated by taking the difference between the original and the bootstrap datasets. In this case, the remaining samples who were not selected are Emily, Jessie, George, Rachel, and Jamal. Keep in mind that since both datasets are sets when taking the difference, the duplicate names are ignored in the bootstrap dataset. The illustration below shows how the math is done:

Complete Example

Importance:

Creating the bootstrap and out-of-bag datasets is crucial since it can be used to test the accuracy of a random forest algorithm. Since the algorithm generates multiple trees and therefore multiple datasets the chance that an object is left out of the bootstrap dataset is low. The next few sections talk about how the random forest works in more detail.

Creation of Decision Trees

The next step of the algorithm involves the generation of decision trees from the bootstrapped dataset. To achieve this, the process examines each gene/feature and determines for how many samples the feature's presence or absence yields a positive or negative result. This information is then used to compute a confusion matrix, which lists the true positives, false positives, true negatives, and false negatives of the feature when used as a classifier. These features are then ranked according to various classification metrics based on their confusion matrices. Some common metrics include estimate of positive correctness (calculated by subtracting false positives from true positives), measure of "goodness", and information gain. These features are then used to partition the samples into two sets: those who possess the top feature, and those who do not.

Decision Tree Depth 2

This process is repeated recursively for successive levels of the tree until the desired depth is reached. At the very bottom of the tree, samples that test positive for the final feature are generally classified as positive, while those that lack the feature are classified as negative.[6] These trees are then used as predictors to classify new data.

Random Forests

The next part of the algorithm involves introducing yet another element of variability amongst the bootstrapped trees. In addition to each tree only examining a bootstrapped set of samples, only a small but consistent number of unique features are considered when ranking them as classifiers. This means that each tree only knows about the data pertaining to a small constant number of features, and a variable number of samples that is less than or equal to that of the original dataset. Consequently, the trees are more likely to return a wider array of answers, derived from more diverse knowledge. This results in a random forest, which possesses numerous benefits over a single decision tree generated without randomness. In a random forest, each tree "votes" on whether or not to classify a sample as positive based on its features. The sample is then classified based on majority vote. An example of this is given in the diagram below, where the four trees in a random forest vote on whether or not a patient with mutations A, B, F, and G has cancer. Since three out of four trees vote yes, the patient is then classified as cancer positive.

Because of their properties, random forests are considered one of the most accurate data mining algorithms, do not overfit their data, and run quickly and efficiently even for large datasets.[6]

Wisdom of Crowds

The wisdom of crowds is the collective opinion of a group of individuals rather than that of a single expert. [7] Utilizing the wisdom of crowds allows for the random forest developed from multiple decision trees to be accurate. When building a random forest, each decision tree acts as a person in the crowd. Each of these trees generates a vote and averaging these results will determine the result per the wisdom of the crowd.

In order to use this method, the crowd must include the prerequisite qualities as listed below in the table.

5 Qualities Necessary For A Wise Crowd[8]
Criteria Description
Diversity of Opinion Each person should have private information even if it is just an eccentric interpretation of the known facts.
Independence People's opinions are not determined by the opinions of those around them.
Decentralization People are able to specialize and draw on their local knowledge.
Aggregation Some mechanism exists for turning private judgements into a collective decision.
Trust Each person trusts the collective group to be fair and valid.

[9]

Although there are situations where the wisdom of the crowd is not accurate and produces a failed judgement, the wisdom of crowds when above criteria is met yields a wise judgement. Generating and studying the wisdom of crowds in a random forest is an accurate way to judge the overall determining result.

Improving Random Forests and Bagging

Random forests are incredibly useful on their own, however, there are certain methods that can be used in order to improve their execution and voting time, their prediction accuracy, and their overall performance. The following are key steps in creating an efficient random forest:

  1. Specify the maximum depth of trees: Instead of allowing your random forest to continue until all nodes are pure, it is better to cut it off at a certain point in order to further decrease chances of overfitting.
  2. Prune the dataset: Using an extremely large dataset may prove to create results that is less indicative of the data provided than a smaller set that more accurately represents what is being focused on.
    1. Continue pruning the data at each node split rather than just in the original bagging process.
  3. Decide on accuracy or speed: Depending on the desired results, increasing or decreasing the number of trees within the forest can help. Increasing the number of trees generally provides more accurate results while decreasing the number of trees will provide quicker results.
Pros and Cons of Random Forests and Bagging
Pros Cons
There are overall less requirements involved for normalization and scaling, making the use of random forests more convenient. [10] The algorithm may change significantly if there is a slight change to the data being bootstrapped and used within the forests[11].
Easy data preparation. Random Forests are more complex to implement than lone decision trees or other algorithms.
Consisting of multiple decision trees, forests are able to more accurately make predictions. Requires much more time to train the data compared to decision trees.
Works well with non-linear data. Requires much more time to make decisions and vote within the random forest classifier.
Lower risk of overfitting and runs efficiently on even large data sets[12]. Requires much more computational power and computational resources.
Use of the random forest classifier is popular because of its high accuracy and speed[13]. Does not predict beyond the range of the training data.
Deals with missing data and datasets with many outliers well. To recreate specific results you need to keep track of the exact random seed being used to generate the bootstrap sets.
Bootstrapping helps to combine different predictions to find the most accurate amount of votes within a random forest. Random forests cannot guarantee optimal trees[14].

Algorithm (classification)

Flow chart of the bagging algorithm when used for classification

For classification, use a training set , Inducer and the number of bootstrap samples as input. Generate a classifier as output[15]

  1. Create new training sets , from with replacement
  2. Classifier is built from each set using to determine the classification of set
  3. Finally classifier is generated by using the previously created set of classifiers on the original data set , the classification predicted most often by the sub-classifiers is the final classification
for i = 1 to m {
    D' = bootstrap sample from D    (sample with replacement)
    Ci = I(D')
}
C*(x) = argmax #{i:Ci(x)=y}            (most often predicted label y)
         y∈Y   

Example: ozone data

To illustrate the basic principles of bagging, below is an analysis on the relationship between ozone and temperature (data from Rousseeuw and Leroy[clarification needed] (1986), analysis done in R).

The relationship between temperature and ozone appears to be nonlinear in this data set, based on the scatter plot. To mathematically describe this relationship, LOESS smoothers (with bandwidth 0.5) are used. Rather than building a single smoother for the complete data set, 100 bootstrap samples were drawn. Each sample is composed of a random subset of the original data and maintains a semblance of the master set’s distribution and variability. For each bootstrap sample, a LOESS smoother was fit. Predictions from these 100 smoothers were then made across the range of the data. The black lines represent these initial predictions. The lines lack agreement in their predictions and tend to overfit their data points: evident by the wobbly flow of the lines.

By taking the average of 100 smoothers, each corresponding to a subset of the original data set, we arrive at one bagged predictor (red line). The red line's flow is stable and does not overly conform to any data point(s).

Advantages and disadvantages

Advantages:

  • Many weak learners aggregated typically outperform a single learner over the entire set, and has less overfit
  • Removes variance in high-variance low-bias weak learner [16]
  • Can be performed in parallel, as each separate bootstrap can be processed on its own before combination[17]

Disadvantages:

  • For weak learner with high bias, bagging will also carry high bias into its aggregate[16]
  • Loss of interpretability of a model.
  • Can be computationally expensive depending on the data set

History

The concept of bootstrap aggregating is derived from the concept of bootstrapping which was developed by Bradley Efron.[18] Bootstrap aggregating was proposed by Leo Breiman who also coined the abbreviated term "bagging" (bootstrap aggregating). Breiman developed the concept of bagging in 1994 to improve classification by combining classifications of randomly generated training sets. He argued, "If perturbing the learning set can cause significant changes in the predictor constructed, then bagging can improve accuracy".[3]

See also

References

  1. ^ Aslam, Javed A.; Popa, Raluca A.; and Rivest, Ronald L. (2007); On Estimating the Size and Confidence of a Statistical Audit, Proceedings of the Electronic Voting Technology Workshop (EVT '07), Boston, MA, August 6, 2007. More generally, when drawing with replacement n′ values out of a set of n (different and equally likely), the expected number of unique draws is .
  2. ^ a b Breiman, Leo (1996). "Bagging predictors". Machine Learning. 24 (2): 123–140. CiteSeerX 10.1.1.32.9399. doi:10.1007/BF00058655. S2CID 47328136.
  3. ^ a b Breiman, Leo (September 1994). "Bagging Predictors" (PDF). Technical Report (421). Department of Statistics, University of California Berkeley. Retrieved 2019-07-28.
  4. ^ Sahu, A., Runger, G., Apley, D., Image denoising with a multi-phase kernel principal component approach and an ensemble version, IEEE Applied Imagery Pattern Recognition Workshop, pp.1-7, 2011.
  5. ^ Shinde, Amit, Anshuman Sahu, Daniel Apley, and George Runger. "Preimages for Variation Patterns from Kernel PCA and Bagging." IIE Transactions, Vol.46, Iss.5, 2014
  6. ^ a b "Decision tree learning", Wikipedia, 2021-11-29, retrieved 2021-11-29
  7. ^ "Wisdom of the crowd", Wikipedia, 2021-11-17, retrieved 2021-11-29
  8. ^ Surowiecki, James (2005). The wisdom of crowds (1st Anchor books ed.). New York. ISBN 0-385-72170-6. OCLC 61254310.{{cite book}}: CS1 maint: location missing publisher (link)
  9. ^ "The Wisdom of Crowds", Wikipedia, 2021-10-10, retrieved 2021-11-29
  10. ^ "Random Forest Pros & Cons". HolyPython.com. Retrieved 2021-11-26.
  11. ^ K, Dhiraj (2020-11-22). "Random Forest Algorithm Advantages and Disadvantages". Medium. Retrieved 2021-11-26.
  12. ^ Team, Towards AI; Team, Towards AI. "Why Choose Random Forest and Not Decision Trees – Towards AI — The World's Leading AI and Technology Publication". Retrieved 2021-11-26.
  13. ^ "Random Forest". Corporate Finance Institute. Retrieved 2021-11-26.
  14. ^ Team, Towards AI; Team, Towards AI. "Why Choose Random Forest and Not Decision Trees – Towards AI — The World's Leading AI and Technology Publication". Retrieved 2021-11-26.
  15. ^ Bauer, Eric; Kohavi, Ron (1999). "An Empirical Comparison of Voting Classification Algorithms: Bagging, Boosting, and Variants". Machine Learning. 36: 108–109. doi:10.1023/A:1007515423169. S2CID 1088806. Retrieved 6 December 2020.
  16. ^ a b "What is Bagging (Bootstrap Aggregation)?". CFI. Corporate Finance Institute. Retrieved December 5, 2020.
  17. ^ Zoghni, Raouf (September 5, 2020). "Bagging (Bootstrap Aggregating), Overview". The Startup – via Medium.
  18. ^ Efron, B. (1979). "Bootstrap methods: Another look at the jackknife". The Annals of Statistics. 7 (1): 1–26. doi:10.1214/aos/1176344552.

Further reading