What is a Rectified Linear Unit?
An activation function with the following behavior: - If input is negative or zero, then the output is 0.
Rectified Linear Unit explained in plain English
An activation function with the following behavior: - If input is negative or zero, then the output is 0. - If input is positive, then the output is equal to the input. For example: - If the input is -3, then the output is 0. - If the input is +3, then the output is 3.0. Here is a plot of ReLU: ReLU is a very popular activation function. Despite its simple behavior, ReLU still enables a neural network to learn nonlinear relationships between features and the label.
Example
Practitioners refer to rectified linear unit when building, training, or evaluating machine learning systems. It appears in research papers, product documentation, and technical discussions about AI capabilities and limitations.
People also read
- activation function
A function that enables neural networks to learn nonlinear (complex) relationships between features and the label.
- Backpropagation
The process that tells a neural network which internal settings caused an error and how to adjust them, working backwards through layers.
- batch
The set of examples used in one training iteration.
- batch normalization
Normalizing the input or output of the activation functions in a hidden layer.
- batch size
The number of examples in a batch.
- Bayesian neural network
A probabilistic neural network that accounts for uncertainty in weights and outputs.
- co-adaptation
An undesirable behavior in which neurons predict patterns in training data by relying almost exclusively on outputs of specific other neurons instead of relying on the network's behavior as a whole.
- convergence
A state reached when loss values change very little or not at all with each iteration.
- deep model
A neural network containing more than one hidden layer.
- depth
The sum of the following in a neural network: - the number of hidden layers - the number of output layers, which is typically 1 - the number of any embedding layers For example, a neural network with five hidden layers and one output layer has a depth of 6.