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, 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 < 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 uint32_t) |
| 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 71 of file base_layer.hpp.
|
inline |
Create the BaseLayer object.
Definition at line 77 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 105 of file base_layer.hpp.
|
inline |
Get the delta.
Definition at line 120 of file base_layer.hpp.
|
inline |
Modify the delta.
Definition at line 122 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 90 of file base_layer.hpp.
|
inline |
Get the output parameter.
Definition at line 115 of file base_layer.hpp.
|
inline |
Modify the output parameter.
Definition at line 117 of file base_layer.hpp.
|
inline |
Serialize the layer.
Definition at line 128 of file base_layer.hpp.