- 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.
推薦閱讀
- Learning Real-time Processing with Spark Streaming
- 編程卓越之道(卷3):軟件工程化
- 深入淺出WPF
- Rake Task Management Essentials
- Clojure for Domain:specific Languages
- Python計算機視覺編程
- 名師講壇:Java微服務架構實戰(SpringBoot+SpringCloud+Docker+RabbitMQ)
- Mastering RStudio:Develop,Communicate,and Collaborate with R
- Python數據結構與算法(視頻教學版)
- Mastering Data Mining with Python:Find patterns hidden in your data
- Access 2010中文版項目教程
- Python Data Science Cookbook
- 零基礎學Python編程(少兒趣味版)
- 分布式數據庫HBase案例教程
- C/C++代碼調試的藝術