What is Parametric ReLU?

Rectified Linear Unit (ReLU) is an activation function in neural networks. It is a popular choice among developers and researchers because it tackles the vanishing gradient problemThe gradients of activation functions, like sigmoid, become very small. This makes it difficult to train bigger models.. A problem with ReLU is that it returns zero for any negative value input. So, if a neuron provides negative input, it gets stuck and always outputs zero. Such a neuron is considered dead. Therefore, using ReLU may lead to a significant portion of the neural network doing nothing.

Note: You can learn more about this behavior of ReLU here.

Researchers have proposed multiple solutions to this problem. Some of them are mentioned below:

  • Leaky ReLU
  • Parametric ReLU
  • ELU
  • SELU

In this Answer, we discuss Parametric ReLU.

Parametric ReLU

The mathematical representation of Parametric ReLU is as follows:

Here, yi y_i is the input from the ith i\text{th} layer input to the activation function. Every layer learns the same slope parameter denoted asαi \alpha_i . In the case of CNN, i i represents the number of channels. Learning the parameter, αi \alpha_i boosts the model's accuracy without the additional computational overhead.

Note: When αi \alpha_iis equal to zero, the function f f behaves like ReLU. Whereas, when αi \alpha_i is equal to a small number (such as 0.01), the function f f behaves like Leaky ReLU.

The above equation can also be represented as follows:

Using Parametric ReLU does not burden the learning of the neural network. This is because the number of extra parameters to learn is equal to the number of channels. This is relatively small compared to the number of weights the model needs to learn. Parametric ReLU gives a considerable rise in the accuracy of a model, unlike Leaky ReLU.

If the coefficient αi \alpha_i is shared among different channels, we can denote it with aα \alpha.

Parametric ReLU vs. Leaky ReLU

In this section, we compare Parametric ReLU with the performance of Leaky ReLU.

Leaky ReLU vs Parametric ReLU
Leaky ReLU vs Parametric ReLU

Here, we plot Leaky ReLU with α=0.01 \alpha = 0.01 and have Parametric ReLU with α=0.05 \alpha = 0.05 . In practice, this parameter is learned by the neural network and changes accordingly.

Copyright ©2024 Educative, Inc. All rights reserved