Activation function
From Wikipedia, the free encyclopedia
In computational networks, the activation function of a node defines the output of that node given an input or set of inputs. A standard computer chip circuit can be seen as a digital network of activation functions that can be "on" (1) or "off" (0), depending on input. This is similar to the behavior of the linear perceptron in neural networks. However, it is the nonlinear activation function that allows such networks to compute nontrivial problems using only a small number of nodes.
[edit] Functions
In biologically-inspired neural networks, the activation function is usually an abstraction representing the rate of action potential firing in the cell. In its simplest form, this function is binary--that is, either the neuron is firing or not. The function looks like φ(vi) = U(vi), where U is the Heaviside step function. In this case a large number of neurons must be used in computation beyond linear separation of categories.
A line of positive slope may also be used to reflect the increase in firing rate that occurs as input current increases. The function would then be of the form φ(vi) = μvi, where μ is the slope. This activation function is linear, and therefore has the same problems as the binary function. In addition, networks constructed using this model have unstable convergence due to the fact that neuron inputs along favored paths tend to increase without bound, as this function is not normalizable.
All problems mentioned above can be handled by using a normalizable sigmoid activation function. One realistic model stays at zero until input current is received, at which point the firing frequency increases quickly at first, but gradually approaches an asymptote at 100% firing rate. Mathematically, this looks like φ(vi) = U(vi)tanh(vi), where the hyperbolic tangent function can also be any sigmoid. This behavior is realistically reflected in the neuron, as neurons cannot physically fire faster than a certain rate. This model runs into problems, however, in computational networks as it is not differentiable, a requirement in order to calculate backpropagation.
The final model, then, that is used in multilayer perceptrons is a sigmoidal activation function in the form of a hyperbolic tangent. Two forms of this function are commonly used: φ(vi) = tanh(vi) whose range is normalized from -1 to 1, and φ(vi) = (1 + exp( − vi)) − 1 is vertically translated to normalize from 0 to 1. The latter model is often considered more biologically realistic, but it runs into theoretical and experimental difficulties with certain types of computational problems.
[edit] Alternative structures
A special class of activation functions known as radial basis functions (RBFs) are used in RBF networks, which are extremely efficient as universal function approximators. These activation functions can take any form, but they are usually found as one of three functions:
- Gaussian:
- Multiquadratics:
- Inverse multiquadratics:
where ci is the vector representing the function center and a and σ are parameters affecting the spread of the radius.
Support vector machines (SVMs) can effectively utilize a class of activation functions that includes both sigmoids and RBFs. In this case, the input is transformed to reflect a decision boundary hyperplane based on a few training inputs called support vectors x. The activation function for the hidden layer of these machines is referred to as the inner product kernel, K(vi,x) = φ(vi). The support vectors are represented as the centers in RBFs with the kernel equal to the activation function, but they take a unique form in the perceptron as
- ,
where β0 and β1 must satisfy certain conditions for convergence. These machines can also accept arbitrary-order polynomial activation functions where
- . [1]
[edit] References
- ^ Haykin, Simon (1998). Neural Networks: A Comprehensive Foundation, 2, Prentice Hall. ISBN 0132733501.