Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using a Naive Bayes Classifier to categorize several thousand documents into 30 different categories. I have implemented a Naive Bayes Classifier, and with some feature selection (mostly filtering useless words), I've gotten about a 30% test accuracy, with 45% training accuracy. This is significantly better than random, but I want it to be better.

I've tried implementing AdaBoost with NB, but it does not appear to give appreciably better results (the literature seems split on this, some papers say AdaBoost with NB doesn't give better results, others do). Do you know of any other extensions to NB that may possibly give better accuracy?

Thanks very much.

share|improve this question
Use a Bayesian Network Classifier instead of a Naive Bayes Classifier. – George Aug 13 '10 at 9:42

1 Answer

up vote 19 down vote accepted

In my experience, Naive Bayes classifiers, once properly trained, are usually astonishingly accurate; the most sensitive dependence is on feature selection.

So, before optimizing by Boosting, etc., i expect you'll see a much more substantial performance boost by first optimizing your document parser; next i suggest looking a the probability calculations at the heart of the algorithm.

Data Processing/Feature Selection:

I don't know anything about the documents you are classifying or which features you are using, so i'll use examples from the most common NBC application, spam detection, though i'll try to generalize as much as possible.

So look at your parser--how does it process your documents to feed to the NBC? The most common way is probably just to parse each document on word boundaries, to reduce the document to a list of words. This list of words then, comprises your features set that the classifier is trained on.

This often works ok, but if you just consider the spam example, you can quickly see how it fails and just as quickly you can see how to improve it. For instance, above-average spam filters have nuanced features like: frequency of words in all caps, frequency of words in title, and the occurrence of exclamation point in the title. In addition, the best features are often not single words but e.g., pairs of words, or larger word groups.

Specific Classifier Optimizations:

Instead of 30 classes use a 'one-against-many' scheme--in other words, you begin with a two-class classifier (Class A and 'all else') then the results in the 'all else' class are returned to the algorithm for classification into Class B and 'all else', etc.

The Fisher Method (This is perhaps the most common way to optimize a Naive Bayes classifier.) An NBC uses the feature probabilities to construct a 'whole-document' probability. The Fisher Method calculates the probability of a category for each feature of the document then combines these feature probabilities and compares that combined probability with the probability of a random set of features. In addition, this technique gives you significantly more flexibility when selecting category boundaries.

share|improve this answer
Thanks - this is exactly what I was looking for. – wmute Aug 16 '10 at 2:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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