Interface | Description |
---|---|
ActivationFunction |
Interface to be implemented for activation functions.
|
Class | Description |
---|---|
ApproximateSigmoid |
Computes approximate (fast) version of sigmoid activation function f(x) = 1 / (1 + e^(-x))
|
Sigmoid |
Computes sigmoid activation function f(x) = 1 / (1 + e^(-x))
|
Softplus |
Computes softplus activation function f(x) = ln(1 + e^(x))
|