12 #ifndef MLPACK_METHODS_ANN_LOSS_FUNCTION_MEAN_BIAS_ERROR_HPP 13 #define MLPACK_METHODS_ANN_LOSS_FUNCTION_MEAN_BIAS_ERROR_HPP 30 typename InputDataType = arma::mat,
31 typename OutputDataType = arma::mat
48 template<
typename PredictionType,
typename TargetType>
49 typename PredictionType::elem_type
Forward(
const PredictionType& prediction,
50 const TargetType& target);
60 template<
typename PredictionType,
typename TargetType,
typename LossType>
61 void Backward(
const PredictionType& prediction,
62 const TargetType& target,
73 template<
typename Archive>
74 void serialize(Archive& ar,
const uint32_t );
78 OutputDataType outputParameter;
85 #include "mean_bias_error_impl.hpp" OutputDataType & OutputParameter() const
Get the output parameter.
Linear algebra utility functions, generally performed on matrices or vectors.
OutputDataType & OutputParameter()
Modify the output parameter.
The core includes that mlpack expects; standard C++ includes and Armadillo.
The mean bias error performance function measures the network's performance according to the mean of ...
void Backward(const PredictionType &prediction, const TargetType &target, LossType &loss)
Ordinary feed backward pass of a neural network.
void serialize(Archive &ar, const uint32_t)
Serialize the layer.
PredictionType::elem_type Forward(const PredictionType &prediction, const TargetType &target)
Computes the mean bias error function.
MeanBiasError()
Create the MeanBiasError object.