ReLU {nnR}R Documentation

: ReLU

Description

The ReLU activation function

Usage

ReLU(x)

Arguments

x

A real number that is the input to our ReLU function.

Value

The output of the standard ReLU function, i.e. \max\{0,x\}. See also Sigmoid. and Tanh.

Examples

ReLU(5)
ReLU(-5)


[Package nnR version 0.1.0 Index]