Download as pdf or txt
Download as pdf or txt
You are on page 1of 47

Lecture 7

Artificial neural networks:


Supervised learning
n Introduction, or how the brain works
n The neuron as a simple computing element
n The perceptron
n Multilayer neural networks
n Accelerated learning in multilayer neural networks
n The Hopfield network
n Bidirectional associative memories (BAM)
n Summary
 Negnevitsky, Pearson Education, 2005 1
Introduction, or how the brain works
Machine learning involves adaptive mechanisms
that enable computers to learn from experience,
learn by example and learn by analogy. Learning
capabilities can improve the performance of an
intelligent system over time. The most popular
approaches to machine learning are artificial
neural networks and genetic algorithms. This
lecture is dedicated to neural networks.

 Negnevitsky, Pearson Education, 2005 2


n A neural network can be defined as a model of
reasoning based on the human brain. The brain
consists of a densely interconnected set of nerve
cells, or basic information-processing units, called
neurons.
n The human brain incorporates nearly 10 billion
neurons and 60 trillion connections, synapses,
between them. By using multiple neurons
simultaneously, the brain can perform its functions
much faster than the fastest computers in existence
today.

 Negnevitsky, Pearson Education, 2005 3


n Each neuron has a very simple structure, but an
army of such elements constitutes a tremendous
processing power.
n A neuron consists of a cell body, soma, a number of
fibers called dendrites, and a single long fiber
called the axon.

 Negnevitsky, Pearson Education, 2005 4


Biological neural network
Synapse

Synapse Dendrites
Axon
Axon

Soma Soma
Dendrites
Synapse

 Negnevitsky, Pearson Education, 2005 5


n Our brain can be considered as a highly complex,
non-linear and parallel information-processing
system.
n Information is stored and processed in a neural
network simultaneously throughout the whole
network, rather than at specific locations. In other
words, in neural networks, both data and its
processing are global rather than local.
n Learning is a fundamental and essential
characteristic of biological neural networks. The
ease with which they can learn led to attempts to
emulate a biological neural network in a computer.
 Negnevitsky, Pearson Education, 2005 6
n An artificial neural network consists of a number of
very simple processors, also called neurons, which
are analogous to the biological neurons in the brain.
n The neurons are connected by weighted links
passing signals from one neuron to another.
n The output signal is transmitted through the
neuron’s outgoing connection. The outgoing
connection splits into a number of branches that
transmit the same signal. The outgoing branches
terminate at the incoming connections of other
neurons in the network.

 Negnevitsky, Pearson Education, 2005 7


Architecture of a typical artificial neural network

Output Signals
Input Signals

Middle Layer
Input Layer Output Layer

 Negnevitsky, Pearson Education, 2005 8


Analogy between biological and
artificial neural networks

Biological Neural Network Artificial Neural Network


Soma Neuron
Dendrite Input
Axon Output
Synapse Weight

 Negnevitsky, Pearson Education, 2005 9


The neuron as a simple computing element
Diagram of a neuron

Input Signals Weights Output Signals

x1
Y
w1
x2
w2
Neuron Y Y

wn Y
xn

 Negnevitsky, Pearson Education, 2005 10


n The neuron computes the weighted sum of the input
signals and compares the result with a threshold
value, θ. If the net input is less than the threshold,
the neuron output is –1. But if the net input is greater
than or equal to the threshold, the neuron becomes
activated and its output attains a value +1.
n The neuron uses the following transfer or activation
function:
n + 1, if X ≥ θ
X = ∑ xi wi Y =
i =1 − 1, if X < θ
n This type of activation function is called a sign
function.
 Negnevitsky, Pearson Education, 2005 11
Activation functions of a neuron

Step function Sign function Sigmoid function Linear function

Y Y Y Y
+1 +1 +1 +1

0 X 0 X 0 X 0 X
-1 -1 -1 -1

1, if X ≥ 0 +1, if X ≥ 0 sigmoid 1


Y step= Y sign = Y = Y linear= X
0, if X < 0 −1, if X < 0 1 + e− X

 Negnevitsky, Pearson Education, 2005 12


Can a single neuron learn a task?

n In 1958, Frank Rosenblatt introduced a training


algorithm that provided the first procedure for
training a simple ANN: a perceptron.
n The perceptron is the simplest form of a neural
network. It consists of a single neuron with
adjustable synaptic weights and a hard limiter.

 Negnevitsky, Pearson Education, 2005 13


Single-layer two-input perceptron

Inputs
x1 Linear Hard
w1 Combiner Limiter
Output
∑ Y
w2
θ
x2
Threshold

 Negnevitsky, Pearson Education, 2005 14


The Perceptron
n The operation of Rosenblatt’s perceptron is based
on the McCulloch and Pitts neuron model. The
model consists of a linear combiner followed by a
hard limiter.
n The weighted sum of the inputs is applied to the
hard limiter, which produces an output equal to +1
if its input is positive and −1 if it is negative.

 Negnevitsky, Pearson Education, 2005 15


n The aim of the perceptron is to classify inputs,
x1, x2, . . ., xn, into one of two classes, say
A1 and A2.
n In the case of an elementary perceptron, the n-
dimensional space is divided by a hyperplane into
two decision regions. The hyperplane is defined by
the linearly separable function:
n
∑ xi wi − θ = 0
i =1

 Negnevitsky, Pearson Education, 2005 16


Linear separability in the perceptrons
x2 x2

Class A 1

1
2
1
x1
Class A 2 x1

x 1 w 1 + x 2w 2 − θ = 0 x1 w 1 + x2 w 2 + x3 w 3 − θ = 0
x3
(a) Two-input perceptron. (b) Three-input perceptron.

 Negnevitsky, Pearson Education, 2005 17


How does the perceptron learn its classification
tasks?
This is done by making small adjustments in the
weights to reduce the difference between the actual
and desired outputs of the perceptron. The initial
weights are randomly assigned, usually in the range
[−0.5, 0.5], and then updated to obtain the output
consistent with the training examples.

 Negnevitsky, Pearson Education, 2005 18


n If at iteration p, the actual output is Y(p) and the
desired output is Yd (p), then the error is given by:

e( p) = Yd ( p) − Y ( p) where p = 1, 2, 3, . . .

Iteration p here refers to the pth training example


presented to the perceptron.
n If the error, e(p), is positive, we need to increase
perceptron output Y(p), but if it is negative, we
need to decrease Y(p).

 Negnevitsky, Pearson Education, 2005 19


The perceptron learning rule
wi ( p + 1) = wi ( p ) + α ⋅ xi ( p ) ⋅ e( p )

where p = 1, 2, 3, . . .
α is the learning rate, a positive constant less than
unity.

The perceptron learning rule was first proposed by


Rosenblatt in 1960. Using this rule we can derive
the perceptron training algorithm for classification
tasks.

 Negnevitsky, Pearson Education, 2005 20


Perceptron’s training algorithm
Step 1: Initialisation
Set initial weights w1, w2,…, wn and threshold θ
to random numbers in the range [−0.5, 0.5].
If the error, e(p), is positive, we need to increase
perceptron output Y(p), but if it is negative, we
need to decrease Y(p).

 Negnevitsky, Pearson Education, 2005 21


Perceptron’s training algorithm (continued)

Step 2: Activation
Activate the perceptron by applying inputs x1(p),
x2(p),…, xn(p) and desired output Yd (p).
Calculate the actual output at iteration p = 1
 n 
Y ( p ) = step  ∑ x i ( p ) w i ( p ) − θ 
 i = 1 
where n is the number of the perceptron inputs,
and step is a step activation function.

 Negnevitsky, Pearson Education, 2005 22


Perceptron’s training algorithm (continued)
Step 3: Weight training
Update the weights of the perceptron
wi ( p + 1) = wi ( p) + ∆wi ( p)
where ∆wi(p) is the weight correction at iteration p.
The weight correction is computed by the delta
rule:
∆wi ( p) = α ⋅ xi ( p ) ⋅ e( p)
Step 4: Iteration
Increase iteration p by one, go back to Step 2 and
repeat the process until convergence.
 Negnevitsky, Pearson Education, 2005 23
Example of perceptron learning: the logical operation AND
Inputs Desired Initial Actual Error Final
Epoch output weights output weights
x1 x2 Yd w1 w2 Y e w1 w2
1 0 0 0 0.3 −0.1 0 0 0.3 −0.1
0 1 0 0.3 −0.1 0 0 0.3 −0.1
1 0 0 0.3 −0.1 1 −1 0.2 −0.1
1 1 1 0.2 −0.1 0 1 0.3 0.0
2 0 0 0 0.3 0.0 0 0 0.3 0.0
0 1 0 0.3 0.0 0 0 0.3 0.0
1 0 0 0.3 0.0 1 −1 0.2 0.0
1 1 1 0.2 0.0 1 0 0.2 0.0
3 0 0 0 0.2 0.0 0 0 0.2 0.0
0 1 0 0.2 0.0 0 0 0.2 0.0
1 0 0 0.2 0.0 1 −1 0.1 0.0
1 1 1 0.1 0.0 0 1 0.2 0.1
4 0 0 0 0.2 0.1 0 0 0.2 0.1
0 1 0 0.2 0.1 0 0 0.2 0.1
1 0 0 0.2 0.1 1 −1 0.1 0.1
1 1 1 0.1 0.1 1 0 0.1 0.1
5 0 0 0 0.1 0.1 0 0 0.1 0.1
0 1 0 0.1 0.1 0 0 0.1 0.1
1 0 0 0.1 0.1 0 0 0.1 0.1
1 1 1 0.1 0.1 1 0 0.1 0.1
Threshold: θ = 0.2; learning rate: α = 0.1

 Negnevitsky, Pearson Education, 2005 24


Two-dimensional plots of basic logical operations
x2 x2 x2

1 1 1

x1 x1 x1
0 1 0 1 0 1

(a) AND (x 1 ∩ x 2 ) (b) OR (x 1 ∪ x 2 ) (c) Exclusive-OR


(x 1 ⊕ x 2 )

A perceptron can learn the operations AND and OR,


but not Exclusive-OR.

 Negnevitsky, Pearson Education, 2005 25


Multilayer neural networks
n A multilayer perceptron is a feedforward neural
network with one or more hidden layers.
n The network consists of an input layer of source
neurons, at least one middle or hidden layer of
computational neurons, and an output layer of
computational neurons.
n The input signals are propagated in a forward
direction on a layer-by-layer basis.

 Negnevitsky, Pearson Education, 2005 26


Multilayer perceptron with two hidden layers

Output Signals
Input Signals

First Second
Input hidden hidden Output
layer layer layer layer

 Negnevitsky, Pearson Education, 2005 27


What does the middle layer hide?
n A hidden layer “hides” its desired output.
Neurons in the hidden layer cannot be observed
through the input/output behaviour of the network.
There is no obvious way to know what the desired
output of the hidden layer should be.
n Commercial ANNs incorporate three and
sometimes four layers, including one or two
hidden layers. Each layer can contain from 10 to
1000 neurons. Experimental neural networks may
have five or even six layers, including three or
four hidden layers, and utilise millions of neurons.

 Negnevitsky, Pearson Education, 2005 28


Back-propagation neural network
n Learning in a multilayer network proceeds the
same way as for a perceptron.
n A training set of input patterns is presented to the
network.
n The network computes its output pattern, and if
there is an error − or in other words a difference
between actual and desired output patterns − the
weights are adjusted to reduce this error.

 Negnevitsky, Pearson Education, 2005 29


n In a back-propagation neural network, the learning
algorithm has two phases.
n First, a training input pattern is presented to the
network input layer. The network propagates the
input pattern from layer to layer until the output
pattern is generated by the output layer.
n If this pattern is different from the desired output,
an error is calculated and then propagated
backwards through the network from the output
layer to the input layer. The weights are modified
as the error is propagated.

 Negnevitsky, Pearson Education, 2005 30


Three-layer back-propagation neural network
Input signals
1
x1
1 y1
1
2
x2 2 y2
2

i wij j wjk
xi k yk

m
n l yl
xn
Input Hidden Output
layer layer layer

Error signals

 Negnevitsky, Pearson Education, 2005 31


The back-propagation training algorithm
Step 1: Initialisation
Set all the weights and threshold levels of the
network to random numbers uniformly
distributed inside a small range:
 2.4 2.4 
 − , + 
 Fi Fi 
where Fi is the total number of inputs of neuron i
in the network. The weight initialisation is done
on a neuron-by-neuron basis.

 Negnevitsky, Pearson Education, 2005 32


Step 2: Activation
Activate the back-propagation neural network by
applying inputs x1(p), x2(p),…, xn(p) and desired
outputs yd,1(p), yd,2(p),…, yd,n(p).
(a) Calculate the actual outputs of the neurons in
the hidden layer:
 n 
y j ( p ) = sigmoid  ∑ xi ( p ) ⋅ w ij ( p ) − θ j 
 i =1 
where n is the number of inputs of neuron j in the
hidden layer, and sigmoid is the sigmoid activation
function.
 Negnevitsky, Pearson Education, 2005 33
Step 2: Activation (continued)
(b) Calculate the actual outputs of the neurons in
the output layer:
m 
y k ( p ) = sigmoid  ∑ x jk ( p ) ⋅ w jk ( p ) − θ k 
 j =1 
where m is the number of inputs of neuron k in the
output layer.

 Negnevitsky, Pearson Education, 2005 34


Step 3: Weight training
Update the weights in the back-propagation network
propagating backward the errors associated with
output neurons.
(a) Calculate the error gradient for the neurons in the
output layer:
δ k ( p ) = yk ( p) ⋅ [1 − y k ( p ) ]⋅ ek ( p )
where ek ( p ) = yd ,k ( p ) − yk ( p )

Calculate the weight corrections:


∆w jk ( p) = α ⋅ y j ( p) ⋅ δ k ( p)
Update the weights at the output neurons:
w jk ( p + 1) = w jk ( p) + ∆w jk ( p )
 Negnevitsky, Pearson Education, 2005 35
Step 3: Weight training (continued)
(b) Calculate the error gradient for the neurons in
the hidden layer:
l
δ j ( p ) = y j ( p ) ⋅ [1 − y j ( p )] ⋅ ∑ δ k ( p ) w jk ( p )
k =1
Calculate the weight corrections:
∆wij ( p ) = α ⋅ xi ( p) ⋅ δ j ( p )
Update the weights at the hidden neurons:
wij ( p + 1) = wij ( p ) + ∆wij ( p )

 Negnevitsky, Pearson Education, 2005 36


Step 4: Iteration
Increase iteration p by one, go back to Step 2 and
repeat the process until the selected error criterion
is satisfied.

As an example, we may consider the three-layer


back-propagation network. Suppose that the
network is required to perform logical operation
Exclusive-OR. Recall that a single-layer perceptron
could not do this operation. Now we will apply the
three-layer net.

 Negnevitsky, Pearson Education, 2005 37


Three-layer network for solving the
Exclusive-OR operation
−1

θ3
w13 −1
x1 1 3 w35
w23 θ5

5 y5
w24
x2 2 4 w45
w24
Input θ4 Output
layer layer
−1
Hidden layer
 Negnevitsky, Pearson Education, 2005 38
n The effect of the threshold applied to a neuron in the
hidden or output layer is represented by its weight, θ,
connected to a fixed input equal to −1.
n The initial weights and threshold levels are set
randomly as follows:
w13 = 0.5, w14 = 0.9, w23 = 0.4, w24 = 1.0, w35 = −1.2,
w45 = 1.1, θ3 = 0.8, θ4 = −0.1 and θ5 = 0.3.

 Negnevitsky, Pearson Education, 2005 39


n We consider a training set where inputs x1 and x2 are
equal to 1 and desired output yd,5 is 0. The actual
outputs of neurons 3 and 4 in the hidden layer are
calculated as
[
y3 = sigmoid ( x1w13 + x2 w23 − θ3 ) = 1 / 1 + e −(1⋅0.5+1⋅0.4 −1⋅0.8) = 0.5250 ]
y4 = sigmoid ( x1w14 + x2 w24 − θ ) = 1 / [1 + e
4
− (1⋅0.9 +1⋅1. 0+1⋅0.1)
] = 0.8808
n Now the actual output of neuron 5 in the output layer
is determined as:
[ ]
y5 = sigmoid ( y3w35 + y4w45 − θ5 ) = 1/ 1+ e−(−0.5250⋅1.2+0.8808⋅1.1−1⋅0.3) = 0.5097

n Thus, the following error is obtained:


e = yd ,5 − y5 = 0 − 0.5097 = −0.5097
 Negnevitsky, Pearson Education, 2005 40
n The next step is weight training. To update the
weights and threshold levels in our network, we
propagate the error, e, from the output layer
backward to the input layer.
n First, we calculate the error gradient for neuron 5 in
the output layer:
δ5 = y5 (1 − y5 ) e = 0.5097 ⋅ (1 − 0.5097) ⋅ ( −0.5097) = −0.1274

n Then we determine the weight corrections assuming


that the learning rate parameter, α, is equal to 0.1:
∆w35 = α ⋅ y3 ⋅ δ 5 = 0.1⋅ 0.5250 ⋅ (−0.1274) = −0.0067
∆w45 = α ⋅ y 4 ⋅ δ 5 = 0.1 ⋅ 0.8808 ⋅ (−0.1274) = −0.0112
∆θ5 = α ⋅ ( −1) ⋅ δ 5 = 0.1 ⋅ (−1) ⋅ (−0.1274) = −0.0127
 Negnevitsky, Pearson Education, 2005 41
n Next we calculate the error gradients for neurons 3
and 4 in the hidden layer:
δ 3 = y3 (1 − y3 ) ⋅ δ 5 ⋅ w35 = 0.5250 ⋅ (1 − 0.5250) ⋅ ( − 0.1274) ⋅ ( − 1.2) = 0.0381
δ 4 = y4 (1 − y4 ) ⋅ δ 5 ⋅ w45 = 0.8808 ⋅ (1 − 0.8808) ⋅ ( − 0.127 4) ⋅ 1.1 = −0.0147

n We then determine the weight corrections:


∆w13 = α ⋅ x1 ⋅ δ 3 = 0.1 ⋅ 1 ⋅ 0.0381 = 0.0038
∆w23 = α ⋅ x2 ⋅ δ 3 = 0.1 ⋅1 ⋅ 0.0381 = 0.0038
∆ θ3 = α ⋅ ( −1) ⋅ δ 3 = 0.1 ⋅ ( −1) ⋅ 0.0381 = −0.0038
∆w14 = α ⋅ x1 ⋅ δ 4 = 0 .1 ⋅1 ⋅ ( − 0.0147 ) = −0 .0015
∆w24 = α ⋅ x2 ⋅ δ 4 = 0 .1 ⋅1 ⋅ ( −0 .0147 ) = −0.0015
∆θ 4 = α ⋅ ( − 1) ⋅ δ 4 = 0.1 ⋅ ( −1) ⋅ ( −0 .0147 ) = 0.0015

 Negnevitsky, Pearson Education, 2005 42


n At last, we update all weights and threshold:
w13 = w13 + ∆ w13 = 0 . 5 + 0 . 0038 = 0 .5038
w14 = w14 + ∆ w14 = 0 . 9 − 0 . 0015 = 0 .8985
w 23 = w 23 + ∆ w 23 = 0 . 4 + 0 . 0038 = 0 .4038
w 24 = w 24 + ∆ w 24 = 1 . 0 − 0 . 0015 = 0 .9985
w 35 = w35 + ∆ w35 = − 1 . 2 − 0 . 0067 = − 1 . 2067
w 45 = w 45 + ∆ w 45 = 1 . 1 − 0 . 0112 = 1 .0888
θ 3 = θ 3 + ∆ θ 3 = 0 . 8 − 0 .0038 = 0 . 7962
θ 4 = θ 4 + ∆ θ 4 = − 0 . 1 + 0 . 0015 = − 0 .0985

θ 5 = θ 5 + ∆ θ 5 = 0 . 3 + 0 . 0127 = 0 . 3127

n The training process is repeated until the sum of


squared errors is less than 0.001.
 Negnevitsky, Pearson Education, 2005 43
Learning curve for operation Exclusive-OR
Sum-Squared Network Error for 224 Epochs
1
10

100
Sum-Squared Error

10-1

10-2

10 -3

10 -4
0 50 100 150 200
Epoch

 Negnevitsky, Pearson Education, 2005 44


Final results of three-layer network learning

Inputs Desired Actual Error Sum of


output output squared
x1 x2 yd y5 e errors
1 1 0 Y
0.0155 −0.0155 0.0010
0 1 1 0.9849 0.0151
1 0 1 0.9849 0.0151
0 0 0 0.0175 −0.0175

 Negnevitsky, Pearson Education, 2005 45


Network represented by McCulloch-Pitts model
for solving the Exclusive-OR operation
−1

+1.5
−1
+1.0
x1 1 3 −2.0 +0.5
+1.0

5 y5
+1.0
x2 2 +1.0
4
+1.0
+0.5

−1
 Negnevitsky, Pearson Education, 2005 46
Decision boundaries
x2 x2 x2
x1 + x 2 – 1.5 = 0 x 1 + x2 – 0.5 = 0

1 1 1

x1 x1 x1
0 1 0 1 0 1

(a) (b) (c)

(a) Decision boundary constructed by hidden neuron 3;


(b) Decision boundary constructed by hidden neuron 4;
(c) Decision boundaries constructed by the complete
three-layer network
 Negnevitsky, Pearson Education, 2005 47

You might also like