diff --git a/src/mlpack/methods/ann/layer/reinforce_normal_impl.hpp b/src/mlpack/methods/ann/layer/reinforce_normal_impl.hpp index 74de3d93d4..c2f92df476 100644 --- a/src/mlpack/methods/ann/layer/reinforce_normal_impl.hpp +++ b/src/mlpack/methods/ann/layer/reinforce_normal_impl.hpp @@ -35,9 +35,6 @@ void ReinforceNormal::Forward( { // Multiply by standard deviations and re-center the means to the mean. output = output.randn(input.n_rows, input.n_cols) * stdev + input; - - // output = arma::randn>(input.n_rows, input.n_cols) * - // stdev + input; moduleInputParameter.push_back(input); }