13 #ifndef MLPACK_METHODS_ANN_LAYER_CONSTANT_HPP 14 #define MLPACK_METHODS_ANN_LAYER_CONSTANT_HPP 31 typename InputDataType = arma::mat,
32 typename OutputDataType = arma::mat
44 Constant(
const size_t outSize = 0,
const double scalar = 0.0);
53 template<
typename InputType,
typename OutputType>
54 void Forward(
const InputType&& input, OutputType&& output);
64 template<
typename DataType>
75 OutputDataType&
Delta()
const {
return delta; }
77 OutputDataType&
Delta() {
return delta; }
82 template<
typename Archive>
83 void serialize(Archive& ar,
const unsigned int );
93 OutputDataType constantOutput;
99 OutputDataType outputParameter;
106 #include "constant_impl.hpp" OutputDataType & OutputParameter()
Modify the output parameter.
Constant(const size_t outSize=0, const double scalar=0.0)
Create the Constant object that outputs a given constant scalar value given any input value...
The core includes that mlpack expects; standard C++ includes and Armadillo.
OutputDataType & OutputParameter() const
Get the output parameter.
void Forward(const InputType &&input, OutputType &&output)
Ordinary feed forward pass of a neural network.
OutputDataType & Delta()
Modify the delta.
void Backward(const DataType &&, DataType &&, DataType &&g)
Ordinary feed backward pass of a neural network.
OutputDataType & Delta() const
Get the delta.
Implementation of the constant layer.
void serialize(Archive &ar, const unsigned int)
Serialize the layer.