Machine learningMachine learning
集成朴素贝叶斯
集成朴素贝叶斯(Ensemble Naive Bayes)训练多个朴素贝叶斯分类器——每个分类器通过装袋(bagging)、特征子集或提升(boosting)等方式接触数据的不同视图——并通过投票或概率平均来组合它们的概率预测。该方法通过集成聚合保留了单个朴素贝叶斯模型的速度和可解释性,同时降低了方差并提高了准确性。
阅读完整方法
仅限会员
登录使用免费账户登录即可阅读本节。
Method map
The neighbourhood of related methods — select a node to explore.
来源
- Dietterich, T. G. (2000). Ensemble Methods in Machine Learning. In J. Kittler & F. Roli (Eds.), Multiple Classifier Systems (MCS 2000), Lecture Notes in Computer Science, vol. 1857, pp. 1–15. Springer. DOI: 10.1007/3-540-45014-9_1 ↗
- Lowd, D. & Domingos, P. (2005). Naive Bayes Models for Probability Estimation. In Proceedings of the 22nd International Conference on Machine Learning (ICML 2005), pp. 529–536. ACM. DOI: 10.1145/1102351.1102418 ↗
如何引用本页
ScholarGate. (2026, June 3). Ensemble of Naive Bayes Classifiers. ScholarGate. https://scholargate.app/zh/machine-learning/ensemble-naive-bayes
Which method?
Set this method beside its closest kin and read them side by side — the library lays the books on the table; the choice is yours.
- Bagging(Bootstrap Aggregating)机器学习↔ compare
- Boosting机器学习↔ compare
- 朴素贝叶斯 (Naive Bayes) 是一种快速的概率分类器,它应用贝叶斯定理,同时假设特征在给定类别时是条件独立的机器学习↔ compare
- 随机森林机器学习↔ compare
- 半监督朴素贝叶斯机器学习↔ compare
- 投票集成 (Voting Ensemble)机器学习↔ compare