Artificial Neural Networks
Artificial Neural Networks
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.
2
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.
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.
3
Each neuron has a very simple structure, but an
army of such elements constitutes a tremendous
processing power.
A neuron consists of a cell body, soma, a number
of fibers called dendrites, and a single long fiber
called the axon.
4
Biological neural network
Synapse
Synapse Dendrites
Axon
Axon
Soma Soma
Dendrites
Synapse
5
Our brain can be considered as a highly complex,
non-linear and parallel information-processing
system.
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.
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.
6
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.
The neurons are connected by weighted links
passing signals from one neuron to another.
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.
7
Architecture of a typical artificial neural network
Output Signals
Input Signals
Middle Layer
Input Layer Output Layer
8
Analogy between biological and
artificial neural networks
9
The neuron as a simple computing element
Diagram of a neuron
x1
Y
w1
x2
w2
Neuron Y Y
wn Y
xn
10
The neuron computes the weighted sum of the input
signals and compares the result with a threshold
value, q. 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.
The neuron uses the following transfer or activation
function:
n 1, if X q
X xi wi Y
i 1 1, if X q
This type of activation function is called a sign
function. 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
12
Can a single neuron learn a task?
13
Single-layer two-input perceptron
Inputs
x1 Linear Hard
w1 Combiner Limiter
Output
Y
w2
q
x2
Threshold
14
The Perceptron
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.
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.
15
The aim of the perceptron is to classify inputs,
x1, x2, . . ., xn, into one of two classes, say
A1 and A2.
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 q 0
i 1
16
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.
17
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, . . .
18
The perceptron learning rule
wi ( p 1) wi ( p) a . xi ( p) . e( p)
where p = 1, 2, 3, . . .
a 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.
19
Perceptron’s training algorithm
Step 1: Initialisation
Set initial weights w1, w2,…, wn and threshold q
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).
20
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 xi ( p ) w i ( p ) q
i 1
where n is the number of the perceptron inputs,
and step is a step activation function.
21
Perceptron’s training algorithm (continued)
Step 3: Weight training
Update the weights of the perceptron
wi ( p 1) wi ( p) Dwi ( p)
where Dwi(p) is the weight correction at iteration p.
The weight correction is computed by the delta
rule:
Dwi ( p) a xi ( p) . e( p)
Step 4: Iteration
Increase iteration p by one, go back to Step 2 and
repeat the process until convergence.
22
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: q = 0.2; learning rate: = 23
0.1
Two-dimensional plots of basic logical operations
x2 x2 x2
1 1 1
x1 x1 x1
0 1 0 1 0 1
24
Multilayer neural networks
A multilayer perceptron is a feedforward neural
network with one or more hidden layers.
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.
The input signals are propagated in a forward
direction on a layer-by-layer basis.
25
Multilayer perceptron with two hidden layers
Output Signals
Input Signals
First Second
Input hidden hidden Output
layer layer layer layer
26
What does the middle layer hide?
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.
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.
27
Back-propagation neural network
Learning in a multilayer network proceeds the
same way as for a perceptron.
A training set of input patterns is presented to the
network.
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.
28
In a back-propagation neural network, the learning
algorithm has two phases.
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.
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.
29
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
30
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
31
Accelerated learning in multilayer
neural networks
A multilayer network learns much faster when the
sigmoidal activation function is represented by a
hyperbolic tangent:
tan h 2a
Y a
1 ebX
where a and b are constants.
Suitable values for a and b are:
a = 1.716 and b = 0.667
32
Learning with adaptive learning rate
To accelerate the convergence and yet avoid the
danger of instability, we can apply two heuristics:
Heuristic 1
If the change of the sum of squared errors has the same
algebraic sign for several consequent epochs, then the
learning rate parameter, a, should be increased.
Heuristic 2
If the algebraic sign of the change of the sum of
squared errors alternates for several consequent
epochs, then the learning rate parameter, a, should be
decreased.
33
Adapting the learning rate requires some changes
in the back-propagation algorithm.
If the sum of squared errors at the current epoch
exceeds the previous value by more than a
predefined ratio (typically 1.04), the learning rate
parameter is decreased (typically by multiplying
by 0.7) and new weights and thresholds are
calculated.
If the error is less than the previous one, the
learning rate is increased (typically by multiplying
by 1.05).
34
The Hopfield Network
Neural networks were designed on analogy with
the brain. The brain’s memory, however, works by
association. For example, we can recognise a
familiar face even in an unfamiliar environment
within 100-200 ms. We can also recall a complete
sensory experience, including sounds and scenes,
when we hear only a few bars of music. The brain
routinely associates one thing with another.
35
Multilayer neural networks trained with the back-
propagation algorithm are used for pattern
recognition problems. However, to emulate the
human memory’s associative characteristics we
need a different type of network: a recurrent
neural network.
A recurrent neural network has feedback loops
from its outputs to its inputs. The presence of
such loops has a profound impact on the learning
capability of the network.
36
The stability of recurrent networks intrigued
several researchers in the 1960s and 1970s.
However, none was able to predict which network
would be stable, and some researchers were
pessimistic about finding a solution at all. The
problem was solved only in 1982, when John
Hopfield formulated the physical principle of
storing information in a dynamically stable
network.
37
Single-layer n-neuron Hopfield network
x1 1 y1
x2 2 y2
xi i yi
xn n yn
38
The Hopfield network uses McCulloch and Pitts
neurons with the sign activation function as its
computing element:
1, if X 0
sign
Y 1, if X
Y, if X
39
The current state of the Hopfield network is
determined by the current outputs of all neurons,
y1, y2, . . ., yn.
Thus, for a single-layer n-neuron network, the state
can be defined by the state vector as:
y1
y2
Y
y n
40
In the Hopfield network, synaptic weights between
neurons are usually represented in matrix form as
follows:
M
W YmYm
T
M I
m1
41
Possible states for the three-neuron
Hopfield network
y2
(1, 1, 1) (1, 1, 1)
y1
0
(1,1,1) (1,1,1)
(1,1, 1) (1,1, 1)
y3
42
The stable state-vertex is determined by the weight
matrix W, the current input vector X, and the
threshold matrix q. If the input vector is partially
incorrect or incomplete, the initial state will converge
into the stable state-vertex after a few iterations.
Suppose, for instance, that our network is required to
memorise two opposite states, (1, 1, 1) and (1, 1, 1).
Thus,
1 1
Y1 1 Y2 1 or Y1T 1 1 1 Y2T 1 1 1
1 1
45
The remaining six states are all unstable. However,
stable states (also called fundamental memories) are
capable of attracting states that are close to them.
The fundamental memory (1, 1, 1) attracts unstable
states (1, 1, 1), (1, 1, 1) and (1, 1, 1). Each of
these unstable states represents a single error,
compared to the fundamental memory (1, 1, 1).
The fundamental memory (1, 1, 1) attracts
unstable states (1, 1, 1), (1, 1, 1) and (1, 1, 1).
Thus, the Hopfield network can act as an error
correction network.
46
Storage capacity of the Hopfield network
Storage capacity is or the largest number of
fundamental memories that can be stored and
retrieved correctly.
The maximum number of fundamental memories
Mmax that can be stored in the n-neuron recurrent
network is limited by
M max 0.15n
47
Bidirectional associative memory (BAM)
The Hopfield network represents an autoassociative
type of memory it can retrieve a corrupted or
incomplete memory but cannot associate this memory
with another different memory.
Human memory is essentially associative. One thing
may remind us of another, and that of another, and so
on. We use a chain of mental associations to recover
a lost memory. If we forget where we left an
umbrella, we try to recall where we last had it, what
we were doing, and who we were talking to. We
attempt to establish a chain of associations, and
thereby to restore a lost memory.
48
To associate one memory with another, we need a
recurrent neural network capable of accepting an
input pattern on one set of neurons and producing
a related, but different, output pattern on another
set of neurons.
Bidirectional associative memory (BAM), first
proposed by Bart Kosko, is a heteroassociative
network. It associates patterns from one set, set A,
to patterns from another set, set B, and vice versa.
Like a Hopfield network, the BAM can generalise
and also produce correct outputs despite corrupted
or incomplete inputs.
49
BAM operation
x1(p) 1 x1(p+1) 1
1 y1(p) 1 y1(p)
x2(p) 2 x2(p+1) 2
2 y2(p) 2 y2(p)
xi (p)
j yj(p) j yj(p)
i xi(p+1) i
m ym(p) m ym(p)
xn(p) n xn(p+1) n
Input Output Input Output
layer layer layer layer
(a) Forward direction. 50
(b) Backward direction.
The basic idea behind the BAM is to store
pattern pairs so that when n-dimensional vector
X from set A is presented as input, the BAM
recalls m-dimensional vector Y from set B, but
when Y is presented as input, the BAM recalls X.
51
To develop the BAM, we need to create a
correlation matrix for each pattern pair we want to
store. The correlation matrix is the matrix product
of the input vector X, and the transpose of the
output vector YT. The BAM weight matrix is the
sum of all correlation matrices, that is,
M
W X m Ym
T
m1
where M is the number of pattern pairs to be stored
in the BAM.
52
Stability and storage capacity of the BAM
The BAM is unconditionally stable. This means that
any set of associations can be learned without risk of
instability.
The maximum number of associations to be stored in
the BAM should not exceed the number of
neurons in the smaller layer.
The more serious problem with the BAM is
incorrect convergence. The BAM may not
always produce the closest association. In fact, a
stable association may be only slightly related to
the initial input vector. 53
Applications off NNs
classification
in marketing: consumer spending pattern classification
In defence: radar and sonar image classification
In agriculture & fishing: fruit and catch grading
In medicine: ultrasound and electrocardiogram image classification, EEGs, medical
diagnosis
recognition and identification
In general computing and telecommunications: speech, vision and handwriting
recognition
In finance: signature verification and bank note verification
assessment
In engineering: product inspection monitoring and control
In defence: target tracking
In security: motion detection, surveillance image analysis and fingerprint matching
forecasting and prediction
In finance: foreign exchange rate and stock market forecasting
In agriculture: crop yield forecasting
In marketing: sales forecasting
In meteorology: weather prediction
54