Skip to main content

ReLU

ReLU activation function.


function relu(x)
{
    //Logic
    return Math.max(0, x);
}