资源介绍
朴素贝叶斯分类器
基本描述
c++11实现了文本分类的基本方法,使用朴素贝叶斯文本分类算法。
使用方法
###1. 创建字典
Dictionary dictionary = { "football", "match", "coldplay", "greenday", "java", "python" };
Document::set_modeling(WordBagModel(&dictionary));
###2. 创建待分类的Document
Document d1("I like football watching football matches every week occasionally playing football game");
Document d2("My favorite band
- 上一篇: 基于朴素贝叶斯分类法的图像分割
- 下一篇: GA+SVM的MATLAB程序