Contents

MLCActivationType.elu

An activation type that implements the exponential linear unit activation function.

Declaration

case elu

Discussion

This activation type implements the following function:

f(x) = x >= 0 ? x : a * (exp(x) - 1)

See Also

Enumeration Cases