13 #ifndef MLPACK_METHODS_ANN_VISITOR_BACKWARD_VISITOR_HPP 14 #define MLPACK_METHODS_ANN_VISITOR_BACKWARD_VISITOR_HPP 19 #include <boost/variant.hpp> 36 template<
typename LayerType>
54 #include "backward_visitor_impl.hpp"
BackwardVisitor executes the Backward() function given the input, error and delta parameter...
Linear algebra utility functions, generally performed on matrices or vectors.
void operator()(LayerType *layer) const
Execute the Backward() function.
arma::mat && input
The input parameter set.
BackwardVisitor(arma::mat &&input, arma::mat &&error, arma::mat &&delta)
Execute the Backward() function given the input, error and delta parameter.
arma::mat && error
The error parameter.
arma::mat && delta
The delta parameter.