Skip to content

Latest commit

 

History

History
executable file
·
7 lines (4 loc) · 528 Bytes

README.md

File metadata and controls

executable file
·
7 lines (4 loc) · 528 Bytes

Naive Bayes

This project implements a Naive Bayes classifier for classifying emails as either spam or ham (= nonspam). This classifier uses one of the most popular and simple machine learning classification algorithms, the Naive Bayes algorithm. The Naive Bayes algorithm is based on the Bayes Theorem for calculating probabilities and conditional probabilities.

Important Files to look at

  • NaiveBayes implements the Naive Bayes algorithm.