Implementation of the base layer. More...
Public Member Functions | |
| BaseLayer () | |
| Create the BaseLayer object. More... | |
template < typename eT > | |
| void | Backward (const arma::Mat< eT > &&input, 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 < typename InputType , typename OutputType > | |
| 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 < typename Archive > | |
| void | serialize (Archive &, const unsigned int) |
| Serialize the layer. More... | |
Implementation of the base layer.
The base layer works as a metaclass which attaches various functions to the embedding layer.
A few convenience typedefs are given:
| ActivationFunction | Activation function used for the embedding layer. |
| 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 49 of file base_layer.hpp.
|
inline |
Create the BaseLayer object.
Definition at line 55 of file base_layer.hpp.
|
inline |
Ordinary feed backward pass of a neural network, calculating the function f(x) by propagating x backwards trough f.
Using the results from the feed forward pass.
| input | The propagated input activation. |
| gy | The backpropagated error. |
| g | The calculated gradient. |
Definition at line 83 of file base_layer.hpp.
|
inline |
Get the delta.
Definition at line 98 of file base_layer.hpp.
|
inline |
Modify the delta.
Definition at line 100 of file base_layer.hpp.
|
inline |
Ordinary feed forward pass of a neural network, evaluating the function f(x) by propagating the activity forward through f.
| input | Input data used for evaluating the specified function. |
| output | Resulting output activation. |
Definition at line 68 of file base_layer.hpp.
|
inline |
Get the output parameter.
Definition at line 93 of file base_layer.hpp.
|
inline |
Modify the output parameter.
Definition at line 95 of file base_layer.hpp.
|
inline |
Serialize the layer.
Definition at line 106 of file base_layer.hpp.