vote up 7 vote down star
3

I was wondering if there is any good and clean oo implementation of bayesian filtering for spam and text classification? For learning purposes.

flag

7 Answers

vote up 4 vote down check

I definitely recommend Weka which is an Open Source Data Mining Software written in Java:

Weka is a collection of machine learning algorithms for data mining tasks. The algorithms can either be applied directly to a dataset or called from your own Java code. Weka contains tools for data pre-processing, classification, regression, clustering, association rules, and visualization. It is also well-suited for developing new machine learning schemes.

As mentioned above, it ships with a bunch of different classifiers like SVM, Winnow, C4.5, Naive Bayes (of course) and many more (see the API doc). Note that a lot of classifiers are known to have much better perfomance than Naive Bayes in the field of spam detection or text classification.

Furthermore Weka brings you a very powerful GUI

link|flag
vote up 3 vote down

Check out Chapter 6 of Programming Collective Intelligence

link|flag
vote up 2 vote down

maybe https://ci-bayes.dev.java.net/ or what about http://www.cs.cmu.edu/~javabayes/Home/node2.html?

I never played with either.

link|flag
vote up 1 vote down

Here is an implementation of Bayesian filtering in C#: A Naive Bayesian Spam Filter for C# (hosted on CodeProject).

link|flag
vote up 1 vote down

nBayes - another C# implementation hosted on CodePlex

link|flag
vote up 0 vote down

In French, but you should be able to find the download link :) PHP Naive Bayesian Filter

link|flag
vote up -3 vote down

Don't waste your time on SPAM filtering usages. Spammers easily bypass Bayesian filtering by adding random text to their spam emails.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.