- Mastering Predictive Analytics with scikit:learn and TensorFlow
- Alan Fontaine
- 147字
- 2021-07-23 16:42:24
Boosting
Boosting is another approach to ensemble learning. There are many methods for boosting, but one of the most successful and popular methods that people use for ensemble learning has been the AdaBoost algorithm. It is also called adaptive boosting. The core idea behind this algorithm is that, instead of fitting many individual predictors individually, we fit a sequence of weak learners. The next algorithm depends on the result of the previous one. In the AdaBoost algorithm, every iteration reweights all of these samples. The training data here reweights based on the result of the previous individual learners or individual models.
For example, in classification, the basic idea is that the examples that are misclassified gain weight and the examples that are classified correctly lose weight. So, the next learner in the sequence or the next model in the sequence focuses more on misclassified examples.
- Project 2007項目管理實用詳解
- 火格局的時空變異及其在電網防火中的應用
- Mastercam 2017數控加工自動編程經典實例(第4版)
- 網上沖浪
- 空間機器人遙操作系統及控制
- 輕松學Java
- 機器人創新實訓教程
- INSTANT Autodesk Revit 2013 Customization with .NET How-to
- Prometheus監控實戰
- 運動控制系統
- 電動汽車驅動與控制技術
- Learning Cassandra for Administrators
- Wireshark Revealed:Essential Skills for IT Professionals
- Eclipse全程指南
- Flink內核原理與實現