12 #ifndef MLPACK_METHODS_ANN_LAYER_ADD_HPP 13 #define MLPACK_METHODS_ANN_LAYER_ADD_HPP 31 typename InputDataType = arma::mat,
32 typename OutputDataType = arma::mat
42 Add(
const size_t outSize = 0);
52 void Forward(
const arma::Mat<eT>&& input, arma::Mat<eT>&& output);
64 void Backward(
const arma::Mat<eT>&& ,
65 const arma::Mat<eT>&& gy,
76 void Gradient(
const arma::Mat<eT>&& ,
77 arma::Mat<eT>&& error,
78 arma::Mat<eT>&& gradient);
81 OutputDataType
const&
Parameters()
const {
return weights; }
91 OutputDataType
const&
Delta()
const {
return delta; }
93 OutputDataType&
Delta() {
return delta; }
96 OutputDataType
const&
Gradient()
const {
return gradient; }
98 OutputDataType&
Gradient() {
return gradient; }
103 template<
typename Archive>
104 void serialize(Archive& ar,
const unsigned int );
111 OutputDataType weights;
114 OutputDataType delta;
117 OutputDataType gradient;
120 OutputDataType outputParameter;
127 #include "add_impl.hpp" OutputDataType & Delta()
Modify the delta.
void Forward(const arma::Mat< eT > &&input, arma::Mat< eT > &&output)
Ordinary feed forward pass of a neural network, evaluating the function f(x) by propagating the activ...
void serialize(Archive &ar, const unsigned int)
Serialize the layer.
Implementation of the Add module class.
OutputDataType & Gradient()
Modify the gradient.
The core includes that mlpack expects; standard C++ includes and Armadillo.
OutputDataType const & Parameters() const
Get the parameters.
OutputDataType & Parameters()
Modify the parameters.
OutputDataType const & Delta() const
Get the delta.
OutputDataType const & OutputParameter() const
Get the output parameter.
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 backw...
Add(const size_t outSize=0)
Create the Add object using the specified number of output units.
OutputDataType & OutputParameter()
Modify the output parameter.
OutputDataType const & Gradient() const
Get the gradient.