The logistic function, defined by. More...
Static Public Member Functions | |
static double | Deriv (const double x) |
Computes the first derivative of the logistic function. More... | |
template < typename InputVecType , typename OutputVecType > | |
static void | Deriv (const InputVecType &y, OutputVecType &x) |
Computes the first derivatives of the logistic function. More... | |
template < typename eT > | |
static double | Fn (const eT x) |
Computes the logistic function. More... | |
template < typename InputVecType , typename OutputVecType > | |
static void | Fn (const InputVecType &x, OutputVecType &y) |
Computes the logistic function. More... | |
static double | Inv (const double y) |
Computes the inverse of the logistic function. More... | |
template < typename InputVecType , typename OutputVecType > | |
static void | Inv (const InputVecType &y, OutputVecType &x) |
Computes the inverse of the logistic function. More... | |
|
inlinestatic |
Computes the first derivative of the logistic function.
x | Input activation. |
Definition at line 70 of file logistic_function.hpp.
|
inlinestatic |
Computes the first derivatives of the logistic function.
y | Input activations. |
x | The resulting derivatives. |
Definition at line 82 of file logistic_function.hpp.
|
inlinestatic |
Computes the logistic function.
x | Input data. |
Definition at line 39 of file logistic_function.hpp.
|
inlinestatic |
Computes the logistic function.
x | Input data. |
y | The resulting output activation. |
Definition at line 59 of file logistic_function.hpp.
|
inlinestatic |
Computes the inverse of the logistic function.
y | Input data. |
Definition at line 93 of file logistic_function.hpp.
|
inlinestatic |
Computes the inverse of the logistic function.
y | Input data. |
x | The resulting inverse of the input data. |
Definition at line 105 of file logistic_function.hpp.