- Python Machine Learning By Example
- Yuxi (Hayden) Liu
- 98字
- 2021-07-02 22:57:19
Bagging
Bootstrap aggregating or bagging is an algorithm introduced by Leo Breiman in 1994, which applies Bootstrapping to machine learning problems. Bootstrapping is a statistical procedure, which creates datasets from existing data by sampling with replacement. Bootstrapping can be used to analyze the possible values that arithmetic mean, variance, or another quantity can assume.
The algorithm aims to reduce the chance of overfitting with the following steps:
- We generate new training sets from input train data by sampling with replacement.
- Fit models to each generated training set.
- Combine the results of the models by averaging or majority voting.
推薦閱讀
- Python機器學習:數據分析與評分卡建模(微課版)
- Power Up Your PowToon Studio Project
- Java程序設計與計算思維
- Oracle JDeveloper 11gR2 Cookbook
- Unity 5 for Android Essentials
- C語言程序設計
- 機器學習微積分一本通(Python版)
- Django 3.0應用開發詳解
- SQL Server 2008中文版項目教程(第3版)
- SwiftUI極簡開發
- OpenCV Android開發實戰
- 高性能PHP 7
- Google Maps JavaScript API Cookbook
- C語言程序設計實驗指導
- C語言程序設計實驗指導與習題精解