ensemble learning我要分享

ensemble learning

matlab EnsembleLearning

关注次数: 391

下载次数: 1

文件大小: 12.63 kB

代码分类: 其他

开发平台: matlab

下载需要积分: 2积分

版权声明:如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

代码描述

中文说明:bagging 集成算法描述:Bagging是一种把多个不同的弱学习器训练成一个强学习器的集成学习方法Bagging是一种并行训练过程,通过分类测试样本的有放回抽样,获取多个分类测试子样本,通过分类子样本训练T个基分类器,当对每一个实例进行分类时,分别调用这T个基分类器,得到T个结果,最后对分类问题把这T个分类结果中出现次数最多的类赋予测试实例。


English Description:

Bagging ensemble algorithm description: bagging is an ensemble learning method that trains multiple different weak learners into a strong learner. Bagging is a parallel training process. Multiple subsamples of classification test are obtained by putting back samples of classification test samples, T base classifiers are trained by classification sub samples. When each instance is classified, the T base classifiers are called respectively to get t results. Finally, the test instance is given to the class with the most frequent occurrence in the T classification results.


代码预览