Methods for Pattern Classification
Site: | Saylor Academy |
Course: | CS250: Python for Data Science |
Book: | Methods for Pattern Classification |
Printed by: | Guest user |
Date: | Friday, 4 April 2025, 6:53 AM |
Description
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.
Introduction
Pattern classification is to classify some object into one of the given categories called classes.
For a specific pattern classification problem, a classifier is computer software. It is developed
so that objects () are classified correctly with reasonably good accuracy. Through training
using input-output pairs, classifiers acquire decision functions that classify an input datum
into one of the given classes (
). In pattern recognition applications we rarely if ever have the
prior probability
or the class-conditional density
. of complete knowledge
about the probabilistic structure of the problem. In a typical case, we merely have some vague,
general knowledge about the situation, together with a number of design samples or training
data - particular representatives of the patterns we want to classify training. The problem,
then, is to find some way to use this information to design or data train the classifier.
The organization of this chapter is to address those cases where a great deal of information
about the models is known and to move toward problems where the form of the distributions
is unknown, and even the category membership of training patterns is unknown. We begin in
Bayes decision theory (Sec.2) by considering the ideal case in which the probability structure
underlying the categories is known perfectly. In Sec.3 (Maximum Likelihood), we address the
case when the full probability structure underlying the categories is not known, but the
general forms of their distributions are the models. Thus the uncertainty about a probability
distribution is represented by the values of some unknown parameters, and we seek to
determine these parameters to attain the best categorization. In Sec.4 (Nonparametric
techniques) we move yet further from the Bayesian ideal and assume that we have no prior
parameterized knowledge about the underlying probability structure; in essence, our
classification will be based on information provided by training samples alone. Classic
techniques such as the nearest-neighbor algorithm and potential functions play an important
role here. We then in Sec.5 (Support Vector Machine) Next, in Sec.6 (Nonlinear Discriminants
and Neural Networks), we see how some of the ideas from such linear discriminants can be
extended to a class of very powerful algorithms such as backpropagation and others for
multilayer neural networks; these neural techniques have a range of useful properties that
have made them a mainstay in contemporary pattern recognition research. In Sec.7 (Stochastic
Methods), we discuss simulated annealing by the Boltzmann learning algorithm and other
stochastic methods. We explore the behavior of such algorithms with regard to the matter of
local minima that can plague other neural methods. Sec.8 (Unsupervised Learning and Clustering), by addressing the case when input training patterns are not labeled and that our
recognizer must determine the cluster structure.
Source: Yizhang Guan, https://www.intechopen.com/chapters/10687 This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 3.0 License.
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.