|
| CELU (const double alpha=1.0) |
| Create the CELU object using the specified parameter. More...
|
|
double const & | Alpha () const |
| Get the non zero gradient. More...
|
|
double & | Alpha () |
| Modify the non zero gradient. More...
|
|
template |
void | Backward (const DataType &input, const DataType &gy, DataType &g) |
| Ordinary feed backward pass of a neural network, calculating the function f(x) by propagating x backwards through f. More...
|
|
OutputDataType const & | Delta () const |
| Get the delta. More...
|
|
OutputDataType & | Delta () |
| Modify the delta. More...
|
|
bool | Deterministic () const |
| Get the value of deterministic parameter. More...
|
|
bool & | Deterministic () |
| Modify the value of deterministic parameter. More...
|
|
template |
void | Forward (const InputType &input, OutputType &output) |
| Ordinary feed forward pass of a neural network, evaluating the function f(x) by propagating the activity forward through f. More...
|
|
OutputDataType const & | OutputParameter () const |
| Get the output parameter. More...
|
|
OutputDataType & | OutputParameter () |
| Modify the output parameter. More...
|
|
template |
void | serialize (Archive &ar, const unsigned int) |
| Serialize the layer. More...
|
|
template
class mlpack::ann::CELU< InputDataType, OutputDataType >
The CELU activation function, defined by.
In the deterministic mode, there is no computation of the derivative.
- Template Parameters
-
InputDataType | Type of the input data (arma::colvec, arma::mat, arma::sp_mat or arma::cube). |
OutputDataType | Type of the output data (arma::colvec, arma::mat, arma::sp_mat or arma::cube). |
Definition at line 60 of file celu.hpp.