HOME

TheInfoList



OR:

In the context of artificial neural networks, the rectifier or ReLU (rectified linear unit) activation function is an activation function defined as the positive part of its argument: : f(x) = x^+ = \max(0, x), where ''x'' is the input to a neuron. This is also known as a ramp function and is analogous to
half-wave rectification A rectifier is an electrical device that converts alternating current (AC), which periodically reverses direction, to direct current (DC), which flows in only one direction. The reverse operation (converting DC to AC) is performed by an Power ...
in
electrical engineering Electrical engineering is an engineering discipline concerned with the study, design, and application of equipment, devices, and systems which use electricity, electronics, and electromagnetism. It emerged as an identifiable occupation in the l ...
. This activation function started showing up in the context of visual feature extraction in hierarchical neural networks starting in the late 1960s. It was later argued that it has strong
biological Biology is the scientific study of life. It is a natural science with a broad scope but has several unifying themes that tie it together as a single, coherent field. For instance, all organisms are made up of cells that process hereditary in ...
motivations and mathematical justifications. In 2011 it was found to enable better training of deeper networks, compared to the widely used activation functions prior to 2011, e.g., the logistic sigmoid (which is inspired by probability theory; see logistic regression) and its more practical counterpart, the hyperbolic tangent. The rectifier is, , the most popular activation function for deep neural networks. Rectified linear units find applications in
computer vision Computer vision is an interdisciplinary scientific field that deals with how computers can gain high-level understanding from digital images or videos. From the perspective of engineering, it seeks to understand and automate tasks that the hum ...
and speech recognitionAndrew L. Maas, Awni Y. Hannun, Andrew Y. Ng (2014)
Rectifier Nonlinearities Improve Neural Network Acoustic Models
using deep neural nets and computational neuroscience.


Advantages

* Sparse activation: For example, in a randomly initialized network, only about 50% of hidden units are activated (have a non-zero output). * Better gradient propagation: Fewer vanishing gradient problems compared to sigmoidal activation functions that saturate in both directions. * Efficient computation: Only comparison, addition and multiplication. * Scale-invariant: \max(0, ax) = a \max(0, x) \text a \geq 0. Rectifying activation functions were used to separate specific excitation and unspecific inhibition in the neural abstraction pyramid, which was trained in a supervised way to learn several computer vision tasks. In 2011, the use of the rectifier as a non-linearity has been shown to enable training deep supervised neural networks without requiring
unsupervised ''Unsupervised'' is an American adult animated sitcom created by David Hornsby, Rob Rosell, and Scott Marder which ran on FX from January 19 to December 20, 2012. The show was created, and for the most part, written by David Hornsby, Scott Marder ...
pre-training. Rectified linear units, compared to sigmoid function or similar activation functions, allow faster and effective training of deep neural architectures on large and complex datasets.


Potential problems

* Non-differentiable at zero; however, it is differentiable anywhere else, and the value of the derivative at zero can be arbitrarily chosen to be 0 or 1. * Not zero-centered. * Unbounded. * Dying ReLU problem: ReLU (rectified linear unit) neurons can sometimes be pushed into states in which they become inactive for essentially all inputs. In this state, no gradients flow backward through the neuron, and so the neuron becomes stuck in a perpetually inactive state and "dies". This is a form of the vanishing gradient problem. In some cases, large numbers of neurons in a network can become stuck in dead states, effectively decreasing the model capacity. This problem typically arises when the learning rate is set too high. It may be mitigated by using leaky ReLUs instead, which assign a small positive slope for ''x'' < 0; however, the performance is reduced.


Variants


Piecewise-linear variants


Leaky ReLU

Leaky ReLUs allow a small, positive gradient when the unit is not active. :f(x) = \begin x & \text x > 0, \\ 0.01x & \text. \end


Parametric ReLU

Parametric ReLUs (PReLUs) take this idea further by making the coefficient of leakage into a parameter that is learned along with the other neural-network parameters. :f(x) = \begin x & \text x > 0, \\ a x & \text. \end Note that for ''a'' ≤ 1, this is equivalent to : f(x) = \max(x, ax) and thus has a relation to "maxout" networks.


Other non-linear variants


Gaussian-error linear unit (GELU)

GELU is a smooth approximation to the rectifier: : f(x) = x \cdot \Phi(x), where Φ(''x'') is the
cumulative distribution function In probability theory and statistics, the cumulative distribution function (CDF) of a real-valued random variable X, or just distribution function of X, evaluated at x, is the probability that X will take a value less than or equal to x. Ev ...
of the standard normal distribution. This activation function is illustrated in the figure at the start of this article. It has a non-monotonic “bump” when ''x'' < 0 and serves as the default activation for models such as BERT.


SiLU

The SiLU (sigmoid linear unit) or swish function is another smooth approximation, first coined in the GELU paper: : f(x) = x \cdot \operatorname(x), where \operatorname(x) is the sigmoid function.


Softplus

A smooth approximation to the rectifier is the analytic function :f(x) = \ln(1 + e^x), which is called the ''softplus'' or ''SmoothReLU'' function. For large negative x it is roughly \ln 1, so just above 0, while for large positive x it is roughly \ln(e^x), so just above x. A sharpness parameter k may be included: :f(x) = \frac. The derivative of softplus is the
logistic function A logistic function or logistic curve is a common S-shaped curve (sigmoid curve) with equation f(x) = \frac, where For values of x in the domain of real numbers from -\infty to +\infty, the S-curve shown on the right is obtained, with the ...
. Starting from the parametric version, :f'(x) = \frac = \frac. The logistic sigmoid function is a smooth approximation of the derivative of the rectifier, the Heaviside step function. The multivariable generalization of single-variable softplus is the LogSumExp with the first argument set to zero: : \operatorname^+(x_1, \dots, x_n) := \operatorname(0, x_1, \dots, x_n) = \ln\left(1 + e^ + \cdots + e^ \right). The LogSumExp function is : \operatorname(x_1, \dots, x_n) = \ln\left(e^ + \cdots + e^\right), and its gradient is the
softmax The softmax function, also known as softargmax or normalized exponential function, converts a vector of real numbers into a probability distribution of possible outcomes. It is a generalization of the logistic function to multiple dimensions, a ...
; the softmax with the first argument set to zero is the multivariable generalization of the logistic function. Both LogSumExp and softmax are used in machine learning.


ELU

Exponential linear units try to make the mean activations closer to zero, which speeds up learning. It has been shown that ELUs can obtain higher classification accuracy than ReLUs. : f(x) = \begin x & \text x > 0, \\ a \left(e^x - 1\right) & \text, \end where a is a hyper-parameter to be tuned, and a \geq 0 is a constraint. The ELU can be viewed as a smoothed version of a shifted ReLU (SReLU), which has the form f(x) = \max(-a, x), given the same interpretation of a.


Mish

The mish function could also be used as a smooth approximation of the rectifier.. It is defined as : f(x) = x \tanh\big(\operatorname(x)\big), where \tanh(x) is the hyperbolic tangent, and \operatorname(x) is the softplus function. Mish is non- monotonic and self-gated. It was inspired by Swish, itself a variant of ReLU.


Metallic mean function

The function describing the metallic means is: :f(x) = \frac It satisfies the following properties: * f is monotonic * f is strictly positive * f(0) = 1 * f'(x) = \frac \left( \frac + 1 \right) : f is C^\infty smooth : f is algebraic It also satisfies the following
asymptotic In analytic geometry, an asymptote () of a curve is a line such that the distance between the curve and the line approaches zero as one or both of the ''x'' or ''y'' coordinates tends to infinity. In projective geometry and related contexts, ...
properties: * f(x) \sim x as x \to \infty * f(x) \sim -\frac as x \to \infty


See also

* Softmax function * Sigmoid function * Tobit model * Layer (deep learning)


References

{{Differentiable computing Artificial neural networks