Google Book on Almeida–Pineda recurrent backpropagation
Almeida-Pineda recurrent backpropagation is an error-driven learning technique developed in 1987 by Luis B. Almeida[1] and Fernando J. Pineda.[2][3] It is a supervised learning technique, meaning that the desired outputs are known beforehand, and the task of the network is to learn to generate the desired outputs from the inputs.
As opposed to a feedforward network, a recurrent network is allowed to have connections from any neuron to any neuron in any direction.
Contents [hide] - 1 Model
- 2 Derivation
- 3 Objections
- 4 References
|
Model
Model of a neuron.
j is the index of the neuron when there is more than one neuron. The activation function for backpropagation is sigmoidal.
A feedforward network. In the Almeida-Pineda model, connections may go from any neuron to any neuron, backwards or forwards.
Given a set of k-dimensional inputs with values between 0 and 1 represented as a column vector:
and a nonlinear neuron with (initially random, uniformly distributed between -1 and 1) synaptic weights from the inputs:
then the output y of the neuron is defined as follows:
where is a sigmoidal function such as that used in ordinary feedforward backpropagation (we will use the logistic function from that page), and n is the net input of the neuron, calculated as follows. Assuming N neurons where k of the neurons are simple inputs to the network, with the weight of the connection from neuron i to neuron j being wij, the net nj of neuron j(where j is not an input neuron) is computed using a discrete time approximation to the following equation, iteratively applied to all neurons until the nets settle to some equilibrium state. Initially set nj to 0 for all non-input neurons.
Note that if the weights between pairs of neurons are symmetric, that is, wij = wji, then the network is guaranteed to settle to an equilibrium state.[4] If symmetry is not held, the network will often settle.[5] Of course, ifi is an input, then wji does not exist.
Once the nets of the neurons are determined, an error phase is run to determine error terms for all neurons solely for the purpose of weight modification. As above, these weight modification error terms are computed using a discrete time approximation to the following equation, iteratively applied to all neurons until the error terms settle to some equilibrium state. Initially set ej = 0 for all neurons.
where Jj is an error term for neurons which are outputs and have targets tj:
Jj = tj − yjThe weights are then updated according to the following equation:
Δwij = ηejyiwhere η is some small learning rate.
Derivation
The error terms ej are considered estimates of − dE / dnj during the derivation of the equations for feedforward backpropagation:
Objections
While mathematically sound, the Almeida-Pineda model is biologically implausible, like feedforward backpropagation, because the model requires that neurons communicate error terms backwards through connections for weight updates.
References
- ↑ Almeida, Luis B. (June 1987). "A learning rule for asynchronous perceptrons with feedback in a combinatorial environment". Proceedings of the IEEE First International Conference on Neural Networks. Paywalled.
- ↑ Anderson, Dana Z., ed. (1988). "Generalization of backpropagation to recurrent neural networks". Neural Information Processing Systems. Springer. pp. 602-611. ISBN 978-0883185698.
- ↑ Pineda, Fernando J. (1989). "Recurrent backpropagation and the dynamical approach to adaptive neural computation". Neural Computation 1: 161-172. http://authors.library.caltech.edu/13658/1/PINnc89.pdf.
- ↑ Hopfield, J. J. (May 1984). "Neurons with graded response have collective computational properties like those of two-state neurons". Proceedings of the National Academy of Sciences of the United States of America 81: 3088-3092.http://www.pnas.org/content/81/10/3088.full.pdf.
- ↑ Touretzky, D. S.;Elman, J. L.; Sejnowski, T. J.; Hinton G. E., ed. (1991). "Deterministic Boltzmann learning in networks with asymmetric connectivity". Connectionist Models: Proceedings of the 1990 Summer School. Morgan Kaufmann Publishers. pp. 3-9. ISBN 978-1558601567.