Module 3-1 PDF
Module 3-1 PDF
MODULE 3
DECISION TREE LEARNING
Decision tree learning is a method for approximating discrete-valued target functions, in which
the learned function is represented by a decision tree.
• Decision trees classify instances by sorting them down the tree from the root to some
leaf node, which provides the classification of the instance.
• Each node in the tree specifies a test of some attribute of the instance, and each branch
descending from that node corresponds to one of the possible values for this attribute.
• An instance is classified by starting at the root node of the tree, testing the attribute
specified by this node, then moving down the tree branch corresponding to the value of
the attribute in the given example. This process is then repeated for the subtree rooted
at the new node.
FIGURE: A decision tree for the concept PlayTennis. An example is classified by sorting it
through the tree to the appropriate leaf node, then returning the classification associated with
this leaf
1
Artificial Intelligence &Machine Learning 18CS71
For example, the decision tree shown in above figure corresponds to the expression
(Outlook = Sunny 𝖠 Humidity = Normal)
∨ (Outlook = Overcast)
∨ (Outlook = Rain 𝖠 Wind = Weak)
Decision tree learning is generally best suited to problems with the following characteristics:
2. The target function has discrete output values – The decision tree assigns a Boolean
classification (e.g., yes or no) to each example. Decision tree methods easily extend to
learning functions with more than two possible output values.
4. The training data may contain errors – Decision tree learning methods are robust to
errors, both errors in classifications of the training examples and errors in the attribute
values that describe these examples.
5. The training data may contain missing attribute values – Decision tree methods can
be used even when some training examples have unknown values
2
Artificial Intelligence &Machine Learning 18CS71
The basic algorithm is ID3 which learns decision trees by constructing them top-down
Examples are the training examples. Target_attribute is the attribute whose value is to be
predicted by the tree. Attributes is a list of other attributes that may be tested by the
learned decision tree. Returns a decision tree that correctly classifies the given Examples.
• Otherwise Begin
• A ← the attribute from Attributes that best* classifies Examples
• The decision attribute for Root ← A
• For each possible value, vi, of A,
• Add a new tree branch below Root, corresponding to the test A = vi
• Let Examples vi, be the subset of Examples that have value vi for A
• If Examples vi , is empty
• Then below this new branch add a leaf node with label = most common
value of Target_attribute in Examples
• Else below this new branch add the subtree
ID3(Examples vi, Targe_tattribute, Attributes – {A}))
• End
• Return Root
TABLE: Summary of the ID3 algorithm specialized to learning Boolean-valued functions. ID3
is a greedy algorithm that grows the tree top-down, at each node selecting the attribute that best
classifies the local training examples. This process continues until the tree perfectly classifies
the training examples, or until all attributes have been used
3
Artificial Intelligence &Machine Learning 18CS71
• The central choice in the ID3 algorithm is selecting which attribute to test at each node
in the tree.
• A statistical property called information gain that measures how well a given attribute
separates the training examples according to their target classification.
• ID3 uses information gain measure to select among the candidate attributes at each
step while growing the tree.
Given a collection S, containing positive and negative examples of some target concept, the
entropy of S relative to this Boolean classification is
Where,
p+ is the proportion of positive examples in S
p- is the proportion of negative examples in S.
Example:
Suppose S is a collection of 14 examples of some boolean concept, including 9 positive and 5
negative examples. Then the entropy of S relative to this boolean classification is
4
Artificial Intelligence &Machine Learning 18CS71
5
Artificial Intelligence &Machine Learning 18CS71
An Illustrative Example
• To illustrate the operation of ID3, consider the learning task represented by the training
examples of below table.
• Here the target attribute PlayTennis, which can have values yes or no for different days.
• Consider the first step through the algorithm, in which the topmost node of the decision
tree is created.
• ID3 determines the information gain for each candidate attribute (i.e., Outlook,
Temperature, Humidity, and Wind), then selects the one with highest information gain.
6
Artificial Intelligence &Machine Learning 18CS71
• According to the information gain measure, the Outlook attribute provides the best
prediction of the target attribute, PlayTennis, over the training examples. Therefore,
Outlook is selected as the decision attribute for the root node, and branches are created
below the root for each of its possible values i.e., Sunny, Overcast, and Rain.
7
Artificial Intelligence &Machine Learning 18CS71
8
Artificial Intelligence &Machine Learning 18CS71
• ID3 can be characterized as searching a space of hypotheses for one that fits the training
examples.
• The hypothesis space searched by ID3 is the set of possible decision trees.
• ID3 performs a simple-to complex, hill-climbing search through this hypothesis space,
beginning with the empty tree, then considering progressively more elaborate
hypotheses in search of a decision tree that correctly classifies the training data
Figure: Hypothesis space search by ID3. ID3 searches through the space of possible decision
trees from simplest to increasingly complex, guided by the information gain heuristic.
By viewing ID3 in terms of its search space and search strategy, there are some insight into its
capabilities and limitations
1. ID3's hypothesis space of all decision trees is a complete space of finite discrete-valued
functions, relative to the available attributes. Because every finite discrete-valued
function can be represented by some decision tree
ID3 avoids one of the major risks of methods that search incomplete hypothesis spaces:
that the hypothesis space might not contain the target function.
9
Artificial Intelligence &Machine Learning 18CS71
2. ID3 maintains only a single current hypothesis as it searches through the space of
decision trees.
For example, with the earlier version space candidate elimination method, which
maintains the set of all hypotheses consistent with the available training examples.
By determining only a single hypothesis, ID3 loses the capabilities that follow from
explicitly representing all consistent hypotheses.
For example, it does not have the ability to determine how many alternative decision
trees are consistent with the available training data, or to pose new instance queries that
optimally resolve among these competing hypotheses
3. ID3 in its pure form performs no backtracking in its search. Once it selects an attribute
to test at a particular level in the tree, it never backtracks to reconsider this choice.
In the case of ID3, a locally optimal solution corresponds to the decision tree it selects
along the single search path it explores. However, this locally optimal solution may be
less desirable than trees that would have been encountered along a different branch of
the search.
4. ID3 uses all training examples at each step in the search to make statistically based
decisions regarding how to refine its current hypothesis.
One advantage of using statistical properties of all the examples is that the resulting
search is much less sensitive to errors in individual training examples.
ID3 can be easily extended to handle noisy training data by modifying its termination
criterion to accept hypotheses that imperfectly fit the training data.
Inductive bias is the set of assumptions that, together with the training data, deductively justify
the classifications assigned by the learner to future instances
Given a collection of training examples, there are typically many decision trees consistent with
these examples. Which of these decision trees does ID3 choose?
10
Artificial Intelligence &Machine Learning 18CS71
Approximate inductive bias of ID3: Shorter trees are preferred over larger trees
• Consider an algorithm that begins with the empty tree and searches breadth first through
progressively more complex trees.
• First considering all trees of depth 1, then all trees of depth 2, etc.
• Once it finds a decision tree consistent with the training data, it returns the smallest
consistent tree at that search depth (e.g., the tree with the fewest nodes).
• Let us call this breadth-first search algorithm BFS-ID3.
• BFS-ID3 finds a shortest decision tree and thus exhibits the bias "shorter trees are
preferred over longer trees.
A closer approximation to the inductive bias of ID3: Shorter trees are preferred over longer
trees. Trees that place high information gain attributes close to the root are preferred over
those that do not.
Difference between the types of inductive bias exhibited by ID3 and by the CANDIDATE-
ELIMINATION Algorithm.
ID3:
• ID3 searches a complete hypothesis space
• It searches incompletely through this space, from simple to complex hypotheses, until
its termination condition is met
• Its inductive bias is solely a consequence of the ordering of hypotheses by its search
strategy. Its hypothesis space introduces no additional bias
CANDIDATE-ELIMINATION Algorithm:
• The version space CANDIDATE-ELIMINATION Algorithm searches an incomplete
hypothesis space
• It searches this space completely, finding every hypothesis consistent with the training
data.
• Its inductive bias is solely a consequence of the expressive power of its hypothesis
representation. Its search strategy introduces no additional bias
11
Artificial Intelligence &Machine Learning 18CS71
Preference bias – The inductive bias of ID3 is a preference for certain hypotheses over others
(e.g., preference for shorter hypotheses over larger hypotheses), with no hard restriction on the
hypotheses that can be eventually enumerated. This form of bias is called a preference bias or
a search bias.
Restriction bias – The bias of the CANDIDATE ELIMINATION algorithm is in the form of a
categorical restriction on the set of hypotheses considered. This form of bias is typically called
a restriction bias or a language bias.
Which type of inductive bias is preferred in order to generalize beyond the training data, a
preference bias or restriction bias?
• A preference bias is more desirable than a restriction bias, because it allows the learner
to work within a complete hypothesis space that is assured to contain the unknown target
function.
• In contrast, a restriction bias that strictly limits the set of potential hypotheses is
generally less desirable, because it introduces the possibility of excluding the unknown
target function altogether.
Occam's razor
• Occam's razor: is the problem-solving principle that the simplest solution tends to be
the right one. When presented with competing hypotheses to solve a problem, one
should select the solution with the fewest assumptions.
• Occam's razor: “Prefer the simplest hypothesis that fits the data”.
• Many complex hypotheses that fit the current training data but fail to generalize
correctly to subsequent data.
12
Artificial Intelligence &Machine Learning 18CS71
Argument opposed:
• There are few small trees, and our priori chance of finding one consistent with an
arbitrary set of data is therefore small. The difficulty here is that there are very many
small sets of hypotheses that one can define but understood by fewer learner.
• The size of a hypothesis is determined by the representation used internally by the
learner. Occam's razor will produce two different hypotheses from the same training
examples when it is applied by two learners, both justifying their contradictory
conclusions by Occam's razor. On this basis we might be tempted to reject Occam's
razor altogether.
• The ID3 algorithm grows each branch of the tree just deeply enough to perfectly classify
the training examples but it can lead to difficulties when there is noise in the data, or
when the number of training examples is too small to produce a representative sample
of the true target function. This algorithm can produce trees that overfit the training
examples.
13
Artificial Intelligence &Machine Learning 18CS71
The below figure illustrates the impact of overfitting in a typical application of decision tree
learning.
• The horizontal axis of this plot indicates the total number of nodes in the decision tree,
as the tree is being constructed. The vertical axis indicates the accuracy of predictions
made by the tree.
• The solid line shows the accuracy of the decision tree over the training examples. The
broken line shows accuracy measured over an independent set of test example
• The accuracy of the tree over the training examples increases monotonically as the tree
is grown. The accuracy measured over the independent test examples first increases,
then decreases.
How can it be possible for tree h to fit the training examples better than h', but for it to perform
more poorly over subsequent examples?
1. Overfitting can occur when the training examples contain random errors or noise
2. When small numbers of examples are associated with leaf nodes.
14
Artificial Intelligence &Machine Learning 18CS71
15
Artificial Intelligence &Machine Learning 18CS71
Reduced-Error Pruning
The impact of reduced-error pruning on the accuracy of the decision tree is illustrated in below
figure
• The additional line in figure shows accuracy over the test examples as the tree is pruned.
When pruning begins, the tree is at its maximum size and lowest accuracy over the test
set. As pruning proceeds, the number of nodes is reduced and accuracy over the test set
increases.
• The available data has been split into three subsets: the training examples, the validation
examples used for pruning the tree, and a set of test examples used to provide an
unbiased estimate of accuracy over future unseen examples. The plot shows accuracy
over the training and test sets.
16
Artificial Intelligence &Machine Learning 18CS71
Rule Post-Pruning
17
Artificial Intelligence &Machine Learning 18CS71
For example, consider the decision tree. The leftmost path of the tree in below figure is
translated into the rule.
IF (Outlook = Sunny) ^ (Humidity = High)
THEN PlayTennis = No
Given the above rule, rule post-pruning would consider removing the preconditions
(Outlook = Sunny) and (Humidity = High)
• It would select whichever of these pruning steps produced the greatest improvement in
estimated rule accuracy, then consider pruning the second precondition as a further
pruning step.
• No pruning step is performed if it reduces the estimated rule accuracy.
There are three main advantages by converting the decision tree to rules before pruning
18
Artificial Intelligence &Machine Learning 18CS71
The gain ratio measure penalizes attributes by incorporating a split information, that is sensitive
to how broadly and uniformly the attribute splits the data
19
Artificial Intelligence & Machine Learning 18CS71
The data which is available may contain missing values for some attributes
Example: Medical diagnosis
• <Fever = true, Blood-Pressure = normal, …, Blood-Test = ?, …>
• Sometimes values truly unknown, sometimes low priority (or cost too high)
• In some learning tasks the instance attributes may have associated costs.
• For example: In learning to classify medical diseases, the patients described in terms of
attributes such as Temperature, BiopsyResult, Pulse, BloodTestResults, etc.
• These attributes vary significantly in their costs, both in terms of monetary cost and cost
to patient comfort
• Decision trees use low-cost attributes where possible, depends only on high-cost
attributes only when needed to produce reliable classifications
20
20
Artificial Intelligence & Machine Learning 18CS71
MODULE 3
ARTIFICIAL NEURAL NETWORKS
INTRODUCTION
Artificial neural networks (ANNs) provide a general, practical method for learning real-valued,
discrete-valued, and vector-valued target functions.
Biological Motivation
• The study of artificial neural networks (ANNs) has been inspired by the observation that
biological learning systems are built of very complex webs of interconnected Neurons
• Human information processing system consists of brain neuron: basic building block
cell that communicates information to and from various parts of body
21
20
Artificial Intelligence & Machine Learning 18CS71
22
20
Artificial Intelligence & Machine Learning 18CS71
ANN learning is well-suited to problems in which the training data corresponds to noisy,
complex sensor data, such as inputs from cameras and microphones.
23
20
Artificial Intelligence & Machine Learning 18CS71
PERCEPTRON
• One type of ANN system is based on a unit called a perceptron. Perceptron is a single
layer neural network.
Figure: A perceptron
Learning a perceptron involves choosing values for the weights w0 , . . . , wn . Therefore, the
space H of candidate hypotheses considered in perceptron learning is the set of all possible
real-valued weight vectors
24
20
Artificial Intelligence & Machine Learning 18CS71
Perceptrons can represent all of the primitive Boolean functions AND, OR, NAND (~ AND),
and NOR (~OR)
Some Boolean functions cannot be represented by a single perceptron, such as the XOR
function whose value is 1 if and only if x1 ≠ x2
25
20
Artificial Intelligence & Machine Learning 18CS71
Drawback of perceptron
• The perceptron rule finds a successful weight vector when the training examples are
linearly separable, it can fail to converge if the examples are not linearly separable
The learning problem is to determine a weight vector that causes the perceptron to produce the
correct + 1 or - 1 output for each of the given training examples.
• The role of the learning rate is to moderate the degree to which weights are changed at
each step. It is usually set to some small value (e.g., 0.1) and is sometimes made to decay
as the number of weight-tuning iterations increases
Drawback:
The perceptron rule finds a successful weight vector when the training examples are linearly
separable, it can fail to converge if the examples are not linearly separable.
26
20
Artificial Intelligence & Machine Learning 18CS71
• If the training examples are not linearly separable, the delta rule converges toward a
best-fit approximation to the target concept.
• The key idea behind the delta rule is to use gradient descent to search the hypothesis
space of possible weight vectors to find the weights that best fit the training examples.
To understand the delta training rule, consider the task of training an unthresholded perceptron.
That is, a linear unit for which the output O is given by
To derive a weight learning rule for linear units, specify a measure for the training error of a
hypothesis (weight vector), relative to the training examples.
Where,
• D is the set of training examples,
• td is the target output for training example d,
• od is the output of the linear unit for training example d
• E(w ⃗⃗⃗→ ) is simply half the squared difference between the target output td and the linear
unit output od, summed over all training examples.
27
20
Artificial Intelligence & Machine Learning 18CS71
• Given the way in which we chose to define E, for linear units this error surface must
always be parabolic with a single global minimum.
Gradient descent search determines a weight vector that minimizes E by starting with an
arbitrary initial weight vector, then repeatedly modifying it in small steps.
At each step, the weight vector is altered in the direction that produces the steepest descent
along the error surface depicted in above figure. This process continues until the global
minimum error is reached.
How to calculate the direction of steepest descent along the error surface?
The direction of steepest can be found by computing the derivative of E with respect to each
component of the vector w⃗⃗⃗→ . This vector derivative is called the gradient of E with respect to
⃗⃗⃗→ , written as
w
28
20
Artificial Intelligence & Machine Learning 18CS71
The gradient specifies the direction of steepest increase of E, the training rule for
gradient descent is
• Here η is a positive constant called the learning rate, which determines the step
size in the gradient descent search.
• The negative sign is present because we want to move the weight vector in the
direction that decreases E.
29
20
Artificial Intelligence & Machine Learning 18CS71
To summarize, the gradient descent algorithm for training linear units is as follows:
• Pick an initial random weight vector.
• Apply the linear unit to all training examples, then compute Δw i for each weight
according to Equation (7).
• Update each weight wi by adding Δwi, then repeat this process
Gradient descent is an important general paradigm for learning. It is a strategy for searching
through a large or infinite hypothesis space that can be applied whenever
1. The hypothesis space contains continuously parameterized hypotheses
2. The error can be differentiated with respect to these hypothesis parameters
30
20
Artificial Intelligence & Machine Learning 18CS71
• The gradient descent training rule presented in Equation (7) computes weight updates
after summing over all the training examples in D
• The idea behind stochastic gradient descent is to approximate this gradient descent
search by updating weights incrementally, following the calculation of the error for
each individual example
∆wi = η (t – o) xi
• where t, o, and xi are the target value, unit output, and ith input for the training example
in question
One way to view this stochastic gradient descent is to consider a distinct error function
Ed( ⃗w
⃗⃗→ ) for each individual training example d as follows
• Where, td and od are the target value and the unit output value for training example d.
• Stochastic gradient descent iterates over the training examples d in D, at each iteration
altering the weights according to the gradient with respect to Ed( w
⃗⃗⃗→ )
• The sequence of these weight updates, when iterated over all training examples,
provides a reasonable approximation to descending the gradient with respect to our
original error function Ed( w
⃗⃗⃗→ )
• By making the value of η sufficiently small, stochastic gradient descent can be made to
approximate true gradient descent arbitrarily closely
31
20
Artificial Intelligence & Machine Learning 18CS71
The key differences between standard gradient descent and stochastic gradient descent are
• In standard gradient descent, the error is summed over all examples before updating
weights, whereas in stochastic gradient descent weights are updated upon examining
each training example.
• Summing over multiple examples in standard gradient descent requires more
computation per weight update step. On the other hand, because it uses the true gradient,
standard gradient descent is often used with a larger step size per weight update than
stochastic gradient descent.
• In cases where there are multiple local minima with respect to stochastic gradient
descent can sometimes avoid falling into these local minima because it uses the various
∇E ( ⃗w⃗⃗→ ) rather than ∇ E( w
⃗⃗⃗→ ) to guide its search
d
32
20
Artificial Intelligence & Machine Learning 18CS71
• Sigmoid unit-a unit very much like a perceptron, but based on a smoothed, differentiable
threshold function.
• The sigmoid unit first computes a linear combination of its inputs, then applies a
threshold to the result and the threshold output is a continuous function of its input.
• More precisely, the sigmoid unit computes its output O as
33
20
Artificial Intelligence & Machine Learning 18CS71
where,
• outputs - is the set of output units in the network
• tkd and Okd - the target and output values associated with the kth output unit
• d - training example
Algorithm:
• Create a feed-forward network with ni inputs, nhidden hidden units, and nout output
units.
• Initialize all network weights to small random numbers
• Until the termination condition is met, Do
• For each (𝑥 ⃗ →, 𝑡→ ), in training examples, Do
Propagate the input forward through the network:
1. Input the instance 𝑥 ⃗ →, to the network and compute the output ou of every
unit u in the network.
Propagate the errors backward through the network:
34
20
Artificial Intelligence & Machine Learning 18CS71
Adding Momentum
Because BACKPROPAGATION is such a widely used algorithm, many variations have been
developed. The most common is to alter the weight-update rule the equation below
by making the weight update on the nth iteration depend partially on the update that occurred
during the (n - 1)th iteration, as follows:
Where, Downstream(r) is the set of units immediately downstream from unit r in the network:
that is, all units whose inputs include the output of unit r
• Deriving the stochastic gradient descent rule: Stochastic gradient descent involves
iterating through the training examples one at a time, for each training example d
descending the gradient of the error Ed with respect to this single example
• For each training example d every weight wji is updated by adding to it Δwji
35
20
Artificial Intelligence & Machine Learning 18CS71
Here outputs is the set of output units in the network, tk is the target value of unit k for training
example d, and ok is the output of unit k given training example d.
The derivation of the stochastic gradient descent rule is conceptually straightforward, but
requires keeping track of a number of subscripts and variables
36
20
Artificial Intelligence & Machine Learning 18CS71
Consider two cases: The case where unit j is an output unit for the network, and the case where
j is an internal unit (hidden unit).
37
20
Artificial Intelligence & Machine Learning 18CS71
38
20
Artificial Intelligence & Machine Learning 18CS71
• Hypothesis space is the n-dimensional Euclidean space of the n network weights and
hypothesis space is continuous.
39
20
Artificial Intelligence & Machine Learning 18CS71
BACKPROPAGATION can define new hidden layer features that are not explicit in the input
representation, but which capture properties of the input instances that are most relevant to
learning the target function.
40
20
Artificial Intelligence & Machine Learning 18CS71
• Consider training the network shown in Figure to learn the simple target function f (x)
= x, where x is a vector containing seven 0's and a single 1.
• The network must learn to reproduce the eight inputs at the corresponding eight output
units. Although this is a simple function, the network in this case is constrained to use
only three hidden units. Therefore, the essential information from all eight input units
must be captured by the three learned hidden units.
• When BACKPROPAGATION applied to this task, using each of the eight possible
vectors as training examples, it successfully learns the target function. By examining
the hidden unit values generated by the learned network for each of the eight possible
input vectors, it is easy to see that the learned encoding is similar to the familiar standard
binary encoding of eight values using three bits (e.g., 000,001,010,. . . , 111). The exact
values of the hidden units for one typical run of shown in Figure.
• This ability of multilayer networks to automatically discover useful representations at
the hidden layers is a key feature of ANN learning
What is an appropriate condition for terminating the weight update loop? One choice is to
continue training until the error E on the training examples falls below some predetermined
threshold.
To see the dangers of minimizing the error over the training data, consider how the error E
varies with the number of weight iterations
41
20
Artificial Intelligence & Machine Learning 18CS71
• Consider first the top plot in this figure. The lower of the two lines shows the
monotonically decreasing error E over the training set, as the number of gradient descent
iterations grows. The upper line shows the error E measured over a different
validation set of examples, distinct from the training examples. This line measures the
generalization accuracy of the network-the accuracy with which it fits examples
beyondthe training data.
• The generalization accuracy measured over the validation examples first decreases,
then increases, even as the error over the training examples continues to decrease.
How can this occur? This occurs because the weights are being tuned to fit
idiosyncrasies of the training examples that are not representative of the general
distribution of examples. The large number of weight parameters in ANNs provides
many degrees of freedom forfitting such idiosyncrasies
• Why does overfitting tend to occur during later iterations, but not during earlier
iterations?
By giving enough weight-tuning iterations, BACKPROPAGATION will often be able
to create overly complex decision surfaces that fit noise in the training data or
unrepresentative characteristics of the particular training sample.
42
20
Artificial Intelligence & Machine Learning 18CS71
43
20