Download presentation
Presentation is loading. Please wait.
Published byGavin Garrett Modified over 9 years ago
1
Neural Networks
2
Background - Neural Networks can be : Biological - Biological models Artificial - Artificial models - Desire to produce artificial systems capable of sophisticated computations similar to the human brain.
3
Biological analogy and some main ideas The brain is composed of a mass of interconnected neurons – each neuron is connected to many other neurons Neurons transmit signals to each other Whether a signal is transmitted is an all-or-nothing event (the electrical potential in the cell body of the neuron is thresholded) Whether a signal is sent, depends on the strength of the bond (synapse) between two neurons
4
How Does the Brain Work ? (1) NEURON - The cell that performs information processing in the brain. - Fundamental functional unit of all nervous system tissue.
5
Each consists of : SOMA, DENDRITES, AXON, and SYNAPSE. How Does the Brain Work ? (2)
6
Brain vs. Digital Computers (1) - Computers require hundreds of cycles to simulate a firing of a neuron. - The brain can fire all the neurons in a single step. Parallelism - Serial computers require billions of cycles to perform some tasks but the brain takes less than a second. e.g. Face Recognition
7
Definition of Neural Network A Neural Network is a system composed of many simple processing elements operating in parallel which can acquire, store, and utilize experiential knowledge.
8
Artificial Neural Network? Neurons vs. Units (1) Each element of NN is a node called unit. Units are connected by links. Each link has a numeric weight.
9
Neurons vs. units (2) Real neuron is far away from our simplified model - unit Chemistry, biochemistry, quantumness.
10
Computing Elements A typical unit:
11
Planning in building a Neural Network Decisions must be taken on the following: - The number of units to use. - The type of units required. - Connection between the units.
12
How NN learns a task. Issues to be discussed - Initializing the weights. - Use of a learning algorithm. - Set of training examples. - Encode the examples as inputs. - Convert output into meaningful results.
13
Neural Network Example A very simple, two-layer, feed-forward network with two inputs, two hidden nodes, and one output node.
14
Simple Computations in this network - There are 2 types of components: Linear and Non- linear. - Linear: Input function - calculate weighted sum of all inputs. - Non-linear: Activation function - transform sum into activation level.
15
Calculations Input function: g Activation function g:
16
A Computing Unit. Now in more detail but for a particular model only A unit
17
Activation Activation Functions - Use different functions to obtain different models. - 3 most common choices : 1) Step function 2) Sign function 3) Sigmoid function - An output of 1 represents firing of a neuron down the axon.
18
Step Function Perceptrons
19
3 Activation Functions
20
Standard structure of an artificial neural network Input units – represents the input as a fixed-length vector of numbers (user defined) Hidden units – calculate thresholded weighted sums of the inputs – represent intermediate calculations that the network learns Output units – represent the output as a fixed length vector of numbers
21
Representations Logic rules – If color = red ^ shape = square then + Decision trees – tree Nearest neighbor – training examples Probabilities – table of probabilities Neural networks – inputs in [0, 1] Can be used for all of them Many variants exist
22
Notation
23
Notation (cont.)
24
Operation of individual units Output i = f(W i,j * Input j + W i,k * Input k + W i,l * Input l ) – where f(x) is a threshold (activation) function – f(x) = 1 / (1 + e -Output ) “sigmoid” – f(x) = step function
25
Artificial Neural Networks
26
Perceptron Learning Theorem Recap: A perceptron (threshold unit) can learn anything that it can represent (i.e. anything separable with a hyperplane) 26
27
The Exclusive OR problem A Perceptron cannot represent Exclusive OR since it is not linearly separable. 27
28
28
29
Properties of architecture No connections within a layer No direct connections between input and output layers Fully connected between layers Often more than 3 layers Number of output units need not equal number of input units Number of hidden units per layer can be more or less than input or output units Each unit is a perceptron Often include bias as an extra weight 29
30
Conceptually: Forward Activity - Backward Error 30
31
Backward pass phase: computes ‘error signal’, propagates the error backwards through network starting at output units (where the error is the difference between actual and desired output values) Forward pass phase: computes ‘functional signal’, feed forward propagation of input pattern signals through network Backpropagation learning algorithm ‘BP’ Solution to credit assignment problem in MLP. Rumelhart, Hinton and Williams (1986) (though actually invented earlier in a PhD thesis relating to economics) BP has two phases: 31
32
Forward Propagation of Activity Step 1: Initialize weights at random, choose a learning rate η Until network is trained: For each training example i.e. input pattern and target output(s): Step 2: Do forward pass through net (with fixed weights) to produce output(s) – i.e., in Forward Direction, layer by layer: Inputs applied Multiplied by weights Summed ‘Squashed’ by sigmoid activation function Output passed to each neuron in next layer – Repeat above until network output(s) produced 32
33
Step 3. Back-propagation of error 33
34
‘Back-prop’ algorithm summary (with Maths!) 34
35
‘Back-prop’ algorithm summary (with NO Maths!) 35
36
MLP/BP: A worked example 36
37
Worked example: Forward Pass 37
38
Worked example: Forward Pass 38
39
Worked example: Backward Pass 39
40
Worked example: Update Weights Using Generalized Delta Rule (BP) 40
41
Similarly for the all weights wij: 41
42
Verification that it works 42
43
Training This was a single iteration of back-prop Training requires many iterations with many training examples or epochs (one epoch is entire presentation of complete training set) It can be slow ! Note that computation in MLP is local (with respect to each neuron) Parallel computation implementation is also possible 43
44
Training and testing data How many examples ? –The more the merrier ! Disjoint training and testing data sets –learn from training data but evaluate performance (generalization ability) on unseen test data Aim: minimize error on test data 44
45
More resources Binary Logic Unit in an example – http://www.cs.usyd.edu.au/~irena/ai01/nn/5.html http://www.cs.usyd.edu.au/~irena/ai01/nn/5.html MultiLayer Perceptron Learning Algorithm – http://www.cs.usyd.edu.au/~irena/ai01/nn/8.html http://www.cs.usyd.edu.au/~irena/ai01/nn/8.html 45
Similar presentations
© 2025 SlidePlayer.com. Inc.
All rights reserved.