At the heart of all pattern search or classification problems (either explicitly or implicitly) lies Bayes' Decision Theory. Bayes' decision simply says, given an input observation of unknown classification, make the decision that will minimize the probability of a classification error. For example, in this unit, you will be introduced to the k-nearest neighbor algorithm. It can be demonstrated that this algorithm can make Bayes' decision. Read this chapter to familiarize yourself with Bayes' decision.
Bayesian Decision Theory
Suppose that we know both the prior probabilities and the conditional densities
. Suppose further that we measure the features of a sample and discover that its
value is
. How does this measurement influence our attitude concerning the true state of
nature - that is, the category of the input? We note first that the(joint) probability density of
finding a pattern that is in category
and has feature value
can be written in two ways:
. Rearranging these leads us to the answer to our
question, which is called Bayes' formula:
where in this case of c categories
Two-Category Classification
If we have an observation x for which is greater than
, we would
naturally be inclined to decide that the true state of nature is
. Similarly,
is
greater than
, we would be inclined to choose
. Thus we have justified the
following Bayes decision rule for minimizing the probability of error:
Decide if
, otherwise decide
(3)
In Eq. (1), is a scale factor and unimportant for our problem. By using Eq.(1), we can
instead express the rule in terms of the conditional and prior probabilities. And we notice
. By eliminating this scale factor, we obtain the following completely
equivalent decision rule:
Decide if
otherwise decide
(4)
While the two-category case is just a special instance of the multi-category case, it has
traditionally received separate treatment. Indeed, a classifier that places a pattern in one of
only two categories has a special name - a dichotomizer. Instead of using two dichotomizer
discriminant functions and
and assigning
to
if
, it is more common
to define a single discriminant function
and to use the following decision rule:
Thus, a dichotomizer can be viewed as a machine that computes a single discriminant
function and classifies
according to the algebraic sign of the result. Of the various
forms in which the minimum-error-rate discriminant function can be written, the following
two(derived from Eqs. (1) and (5) are particularly convenient:
Multi-Category Classification
Let be the finite set of c states of nature. Let the feature vector
be a d-component vector-valued random variable, and let
be the state- conditional
probability density function for
- the probability density function for
conditioned on
being the true state of nature. As before,
describes the prior probability that
nature is in state
. Then the posterior probability
can be computed from
by Bayes formula:
where the evidence is now
A Bayes classifier is easily and naturally represented in this way. For the minimum-error-
rate case, we can simplify things further by taking , so that the maximum
discriminant function corresponds to the maximum posterior probability.
Clearly, the choice of discriminant functions is not unique. We can always multiply all the
discriminant functions by the same positive constant or shift them by the same additive
constant without influencing the decision. More generally, if we replace every by
, where
is a monotonically increasing function, the resulting classification is
unchanged. This observation can lead to significant analytical and computational
simplifications. In particular, for minimum-error-rate classification, any of the following
choices gives identical classification results, but some can be much simpler to understand or compute than others:
where ln denotes natural logarithm.