This document discusses two types of frequency-based classification methods: K-Nearest Neighborhood (KNN) and Naive Bayes. KNN is a simple counting-based method that measures distances between data points to classify them, but can be ad-hoc. Naive Bayes uses Bayes' theorem to calculate conditional probabilities of class membership given attribute values in order to classify data points into classes. It makes the assumption that attributes are conditionally independent given the class.