Multilayer perceptron

From Artificial Neural Network for PHP
Revision as of 19:31, 19 January 2008 by Thwien (talk | contribs) (→‎iRProp+)

General

A multilayer perceptron is a feedforward artificial neural network. This means the signal inside the neural network flows from input layer passing hidden layers to output layer. While training the error correction of neural weights are done in the opposite direction. This is done by the backpropagation algorithm.

Activation

At first a cumulative input is calculated by the following equation:

s = \sum^{n}_{k=1} i_{k} \cdot w_{k}

Considering the BIAS value the equation is:

s = (\sum^{n}_{k=1} i_{k} \cdot w_{k}) + BIAS \cdot w_{k}
BIAS = 1

Sigmoid activation function

o = \rm{sig}(s) = \frac{1}{1 + \rm e^{-s}}

Hyperbolic tangent activation function

o = tanh(s)

using output range between -1 and 1, or

o = \frac{tanh(s) + 1}{2}

using output range between 0 and 1.

s cumulative input
w weight of input
i value of input
n number of inputs
k number of neuron

Error of neural network

If the neural network is initialized by random weights it has of course not the expected output. Therefore training is necessary. While supervised training known inputs and their corresponded output values are presented to the network. So it is possible to compare the real output with the desired output. The error is described as the following algorithm:

E={1\over2} \sum^{n}_{i=1} (t_{i}-o_{i})^{2}
E network error
n count of input patterns
t_{i} desired output
o_{i} calculated output

Backpropagation

The learning algorithm of a single layer perceptron is easy compared to a multilayer perceptron. The reason is that just the output layer is directly connected to the output, but not the hidden layers. Therefore the calculation of the right weights of the hidden layers is difficult mathematically. To get the right delta value for changing the weights of hidden neuron is described in the following equation:

\Delta w_{ij}= -\alpha \cdot {\partial E \over \partial w_{ij}} = \alpha \cdot \delta_{j} \cdot x_{i}
E network error
\Delta w_{ij} delta value w_{ij} of neuron connection i to j
\alpha learning rate
\delta_{j} the error of neuron j
x_{i} input of neuron i
t_{j} desired output of output neuron j
o_{j} real output of output neuron j.

Programming solution of backpropagation

In this PHP implementation of multilayer perceptron the following algorithm is used for weight changes in hidden layers and output layer.

Weight change of output layer

\Delta w_{k} = o_{k} \cdot (a_{k} - o_{k}) \cdot (1 - o_{k})
w_{mk} = w_{mk} + \alpha \cdot i_{m} \cdot \Delta w_{k}
k neuron k
o output
i input
a desired output
w weight
m weight m

Weight change of hidden layers

s_{kl} = \sum^{n}_{l=1} w_{k} \cdot \Delta w_{l} \cdot \beta
\Delta w_{k} = o_{k} \cdot (1 - o_{k}) \cdot s_{kl}
w_{mk} = w_{mk} + \alpha \cdot i_{m} \cdot \Delta w_{k}
\alpha learning rate
\beta momentum
k neuron k
l neuron l
w weight
m weight m
i input
o output
n count of neurons

Momentum

To avoid oscillating weight changes the momentum factor \beta is defined. Therefore the calculated weight change would not be the same always.

Overfitting

To avoid overfitting of neural networks in this PHP implementation the training procedure is finished if real output value has a fault tolerance of 1 per cent of desired output value.

Choosing learning rate and momentum

The proper choosing of learning rate (\alpha) and momentum (\beta) is done by experience. Both values have a range between 0 and 1. This PHP implementation uses a default value of 0.5 for \alpha and 0.95 for \beta. \alpha and \beta cannot be zero. Otherwise no weight change will be happen and the network would never reach an errorless level. Theses factors can be changed by runtime.

Dynamic learning rate

To convergent the network faster to its lowest error, use of dynamic learning rate may be a good way.

w_{mk} = w_{mk} + \alpha \cdot \gamma \cdot i_{m} \cdot \Delta w_{k}
\alpha \cdot \gamma = [0.5 .. 0.9]
\alpha learning rate
\beta momentum
\gamma dynamic learning rate factor
k neuron k
w weight
m weight m
i input

This PHP implementation supports dynamic learning rate by default.

Weight decay

Normally weights grow up to large numbers. But in fact this is not necessary. The weight decay algorithm tries to avoid large weights. Through large weights maybe the network convergence takes too long.

The weight change algorithm without weight decay is the following:

\Delta w_{i}(t) = \alpha \cdot \frac{\part E(t)}{\part w_{i}(t)}

By subtracting a value the weight change will be reduce in relation to the last weight.

\Delta w_{i}(t) = \alpha \cdot \frac{\part E(t)}{\part w_{i}(t)} - \lambda \cdot w_{i}(t-1)
\lambda = [0.03 .. 0.05]
w weight
i neuron
E error function
t time (training step)
\alpha learning rate
\lambda weight decay factor

Quick propagation algorithm

The Quickprop algorithm calculates the weight change by using the quadratic function f(x) = x^2. Two different error values of two different weights are the two points of a secant. Relating this secant to a quadratic function it is possible to calculate its minimum f'(x) = 0. The x-coordinate of the minimum point is the new weight value.

S(t) = \frac{\part E}{\part w_{i}(t)}
\Delta w_{i}(t) = \alpha \cdot \frac{\part E}{\part w_{i}(t)} (normal backpropagation)
\frac{\Delta w_{i}(t)}{\alpha} = \frac{\part E}{\part w_{i}(t)}
S(t) = \frac{\part E}{\part w_{i}(t)} = \frac{\Delta w_{i}(t)}{\alpha}
\Delta w_{i}(t) = \frac{S(t)}{S(t-1) - S(t)} \cdot \Delta w_{i}(t-1) (quick propagation)
w weight
i neuron
E error function
t time (training step)
\alpha learning rate

To avoid too big changes the maximum weight change is limited by the following equation:

\Delta w_{i}(t) \leq \mu \cdot \Delta w_{i}(t-1)
\mu = [1.75 .. 2.25]
w weight
i neuron
t time (training step)
\mu maximal weight change factor

RProp (Resilient Propagation)

The RProp algorithm just refers to the direction of the gradient.

\Delta w_{ij}(t) = \begin{cases}

  -\Delta p_{ij},  & \text{if } \frac{\part E}{\part w_{ij}} > 0 \\
  +\Delta p_{ij},  & \text{if } \frac{\part E}{\part w_{ij}} < 0 \\
  0,  & \text{if } \frac{\part E}{\part w_{ij}} = 0

\end{cases}

\Delta p_{ij}(t) = \begin{cases}

  \alpha^+ \cdot \Delta w_{ij}(t-1),  & \text{if } \frac{\part E}{\part w_{ij}}(t-1) \cdot \frac{\part E}{\part w_{ij}}(t) > 0 \\
  \alpha^- \cdot \Delta w_{ij}(t-1),  & \text{if } \frac{\part E}{\part w_{ij}}(t-1) \cdot \frac{\part E}{\part w_{ij}}(t) < 0 \\
  \Delta w_{ij}(t-1),  & \text{if } \frac{\part E}{\part w_{ij}}(t-1) \cdot \frac{\part E}{\part w_{ij}}(t) = 0

\end{cases}

\alpha learning rate
w weight
p weight change
\alpha^+ = 1.2
\alpha^- = 0.5
\Delta w(0) = 0.5
\Delta w(t)_{max} = 50
\Delta w(t)_{min} = 0

RProp+

The RProp+ algorithm reduce the previous weight change from the last weight change if the mathematical sign of the gradient changes.

\Delta w_{ij}(t) = \begin{cases}

  \alpha^+ \cdot \Delta w_{ij}(t-1),  & \text{if } \frac{\part E}{\part w_{ij}}(t-1) \cdot \frac{\part E}{\part w_{ij}}(t) > 0 \\
  \Delta w_{ij}(t-1) - \Delta w_{ij}(t-2),  & \text{if } \frac{\part E}{\part w_{ij}}(t-1) \cdot \frac{\part E}{\part w_{ij}}(t) < 0 \\
  \Delta w_{ij}(t-1),  & \text{if } \frac{\part E}{\part w_{ij}}(t-1) \cdot \frac{\part E}{\part w_{ij}}(t) = 0

\end{cases}

iRProp+

The iRProp+ is a improve RProp+ algorithm with a little change. Before reducing the previous weight change from the last weight change, the network error will be calculated and compared. If the network error increases from E(t-2) to E(t-1), then the procedure of RProp+ will be done. Otherwise no change will be done, because if E(t-1) has a lower value than E(t-2) the weight change seems to be correct to convergent the neural network.

\Delta w_{ij}(t) = \begin{cases}

  \alpha^+ \cdot \Delta w_{ij}(t-1),  & \text{if } \frac{\part E}{\part w_{ij}}(t-1) \cdot \frac{\part E}{\part w_{ij}}(t) > 0 \\
  \Delta w_{ij}(t-1) - \Delta w_{ij}(t-2),  & \text{if } \frac{\part E}{\part w_{ij}}(t-1) \cdot \frac{\part E}{\part w_{ij}}(t) < 0 \text{ and if } E(t) > E(t-1) \\
  \Delta w_{ij}(t-1),  & \text{if } \frac{\part E}{\part w_{ij}}(t-1) \cdot \frac{\part E}{\part w_{ij}}(t) = 0

\end{cases}

Binary and linear input

If binary input is used easily the input value is 0 for false and 1 for true.

0 : False
1 : True

Using linear input values normalization is needed:

i = \frac{f - f_{min}}{f_{max} - f_{min}}
i input value for neural network
f real world value

This PHP implementation is supporting input normalization.

Binary and linear output

The interpretation of output values just makes sense for the output layer. The interpretation is depending on the use of the neural network. If the network is used for classification, so binary output is used. Binary has two states: True or false. The network will produce always linear output values. Therefore these values has to be converted to binary values:

o < 0.5 : False
o >= 0.5 : True
o output value

If using linear output the output values have to be normalized to a real value the network is trained for:

f = o \cdot (f_{max} - f_{min}) + f_{min}
f real world value
o real output value of neural network

The same normalization equation for input values is used for output values while training the network.

o = \frac{f - f_{min}}{f_{max} - f_{min}}
o desired output value for neural network
f real world value

This PHP implementation is supporting output normalization.