Penguin
Blame: BayesianFiltering
EditPageHistoryDiffInfoLikePages
Annotated edit history of BayesianFiltering version 3, including all changes. View license author blame.
Rev Author # Line
2 AristotlePagaltzis 1 A statistical filtering method that assigns probabilities to each unit of information that appears in a document and uses the total of probabilities to decide which category the document belongs to. It is commonly used to distinguish between [Spam] and Ham in [Email], where each unit of information is a word and the probabilities are usually assigned according to a Naive Bayesian calculation. It could, however, be used to sort messages into any number of categories, and it can be applied with any corpus of documents which are to be categorized, not just [Email].
1 PerryLorier 2
3 AristotlePagaltzis 3 Naive Bayesian assumes that events are independant, ie words appearing in a document are unrelated to each other. Obviously, they are not, but disregarding that information still allows remarkably accurate judgements. Attempts to make it "smarter" in fact tend to reduce accuracy. Naive Bayesian is simple, fast, wrong, effective, and accurate. Welcome to the glorious world of machine learning.
1 PerryLorier 4
2 AristotlePagaltzis 5 ----
6 CategoryAntiSpam