UNIT-3
UNIT-3
UNIT 3
BAYESIAN LEARNING
Bayesian learning methods are relevant to our study of machine learning
for two different reasons
First, Bayesian learning algorithms that calculate explicit probabilities for
hypotheses, such as the naive Bayes classifier, are among the most
practical approaches to certain types of learning problems.
The second reason that Bayesian methods are important to our study of
machine learning is that they provide a useful perspective for
understanding many learning algorithms that do not explicitly manipulate
probabilities.
Features of Bayesian learning methods
We are given some prior data (also called training data), which classifies
coordinates into groups identified by an attribute.
given another set of data points (also called testing data), allocate these points a
group by analyzing the training set.
given an unclassified point, we can assign it to a group by observing what
group its nearest neighbors belong to.
This means a point close to a cluster of points classified as ‘Red’ has a higher
probability of getting classified as ‘Red’.
Intuitively, we can see that the first point (2.5, 7) should be classified as
‘Green’ and the second point (5.5, 4.5) should be classified as ‘Red’.
Weighted K-Nearest Neighbor
Example
Minimum Description Length
Principle
Minimum Description Length Principle (Conti..)
Minimum Description Length Principle (Conti..)
BAYES OPTIMAL CLASSIFIER
The Bayes Optimal Classifier is a probabilistic model that
predicts the most likely outcome for a new situation