Data Science & ML
Basic

ReLU Activation

Rectified Linear Unit: outputs the input if positive, else zero.

Formula

f(x)=max(0,x)f(x) = \max(0, x)

Variables

xInput value

Example

f(-3)=0, f(5)=5

Did You Know?

ReLU is the most widely used activation function in deep learning.