This document provides a summary of Bayesian classification. Bayesian classification predicts the probability of class membership for new data instances based on prior knowledge and training data. It uses Bayes' theorem to calculate the posterior probability of a class given the attributes of an instance. The naive Bayesian classifier assumes attribute independence and uses frequency counts to estimate probabilities. It classifies new instances by selecting the class with the highest posterior probability. The example shows how probabilities are estimated from training data and used to classify an unseen instance in the play-tennis dataset.
Related topics: