qiyadeng

专注于Java示例及教程
posts - 84, comments - 152, trackbacks - 0, articles - 34

ci-bayes实现了两种贝叶斯分类方法:a Navie implementation 和 a Fisher implementation,是Toby segaran's 的书"Programming Collective Intelligence"的一部分的Java实现版本。

简单的一个例子如下:

FisherClassifier fc=new FisherClassifierImpl();
fc.train("The quick brown fox jumps over the lazy dog's tail","good");
fc.train("Make money fast!", "bad"); 
String classification=fc.getClassification("money"); // should be "bad"

Feedback

# re: Java实现的贝叶斯(Bayesian)分类器 ci-bayes 1.0发布[未登录]  回复  更多评论   

2008-09-22 09:12 by zhang
fffffffffffffff

# re: Java实现的贝叶斯(Bayesian)分类器 ci-bayes 1.0发布  回复  更多评论   

2009-03-16 10:16 by naivebayes
thank you very much

只有注册用户登录后才能发表评论。


网站导航: