From f3151d2ada8d8aab35ca16431aacac57240a3d69 Mon Sep 17 00:00:00 2001 From: RishabhGarg108 Date: Sat, 7 Nov 2020 09:58:25 +0530 Subject: [PATCH] Fixed style issues --- src/mlpack/methods/ann/layer/max_pooling.hpp | 2 +- src/mlpack/methods/ann/layer/mean_pooling.hpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mlpack/methods/ann/layer/max_pooling.hpp b/src/mlpack/methods/ann/layer/max_pooling.hpp index 58cfb7f2de..02abf118ca 100644 --- a/src/mlpack/methods/ann/layer/max_pooling.hpp +++ b/src/mlpack/methods/ann/layer/max_pooling.hpp @@ -159,7 +159,7 @@ class MaxPooling bool Deterministic() const { return deterministic; } //! Modify the value of the deterministic parameter. bool& Deterministic() { return deterministic; } - + //! Get the size of the weights. size_t WeightSize() const { return 0; } diff --git a/src/mlpack/methods/ann/layer/mean_pooling.hpp b/src/mlpack/methods/ann/layer/mean_pooling.hpp index d181276585..b460743872 100644 --- a/src/mlpack/methods/ann/layer/mean_pooling.hpp +++ b/src/mlpack/methods/ann/layer/mean_pooling.hpp @@ -140,7 +140,7 @@ class MeanPooling bool Deterministic() const { return deterministic; } //! Modify the value of the deterministic parameter. bool& Deterministic() { return deterministic; } - + //! Get the size of the weights. size_t WeightSize() const { return 0; }