I am looking for a Python library which does Bayesian Spam Filtering. I looked at SpamBayes and OpenBayes, but both seem to be unmaintained (I might be wrong).

Can anyone suggest a good Python (or Clojure, Common Lisp, even Ruby) library which implements Bayesian Spam Filtering?

Thanks in advance.

Clarification: I am actually looking for a Bayesian Spam Classifier and not necessarily a spam filter. I just want to train it using some data and later tell me whether some given data is spam. Sorry for any confusion.

link|improve this question

feedback

5 Answers

up vote 7 down vote accepted

Do you want spam filtering or Bayesian classification?

For Bayesian classification there are a number of Python modules. I was just recently reviewing Orange which looks very impressive. R has a number of Bayesian modules. You can use Rpy to hook into R.

link|improve this answer
feedback

Try Reverend. It's a spam filtering module.

link|improve this answer
Note: Link broken. – dfrankow Feb 24 '11 at 19:15
@dfrankow: yup, divmod.org no longer seems to be online. PyPI has a page for Reverend here: pypi.python.org/pypi/Divmod%20Reverend/0.2.4 – Paul D. Waite Mar 6 '11 at 14:19
And on that page, the homepage (divmod.org) is busted. So, one can install the PyPi package, but the original source of the package is gone. – dfrankow Mar 10 '11 at 16:46
2  
I got hold of the divmod people, and asked about reverend. The original source code for Reverend is available here: bazaar.launchpad.net/~divmod-dev/divmod.org/trunk/files/head:/… – Emil Stenström Mar 13 '11 at 12:36
feedback

Try to use bogofilter, I'm not sure how it can be used from Python. Bogofilter is integrated with many mail systems, which means a relative ease of interfacing.

link|improve this answer
feedback

SpamBayes is maintained, and is mature (i.e. it works without having to have new releases all the time). It will easily do what you want. Note that SpamBayes is only loosely Bayesian (it uses chi-squared combining), but presumably you're after any sort of statistical token-based classification, rather than something specifically Bayesian.

link|improve this answer
feedback

A module in the Python natural language toolkit (nltk) does naïve Bayesian classification: nltk.classify.naivebayes.

Disclaimer: I know crap all about Bayesian classification, naïve or worldly.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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