|
| Join () |
| Create the Join object. More...
|
|
template |
void | Backward (const arma::Mat< eT > &, const arma::Mat< eT > &gy, arma::Mat< eT > &g) |
| Ordinary feed backward pass of a neural network, calculating the function f(x) by propagating x backwards trough f. More...
|
|
OutputDataType const & | Delta () const |
| Get the delta. More...
|
|
OutputDataType & | Delta () |
| Modify the delta. 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::Join< InputDataType, OutputDataType >
Implementation of the Join module class.
The Join class accumulates the output of various modules.
- 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 33 of file join.hpp.