From 2ce058db0c05efbc55a4d264bdd6db487d34751d Mon Sep 17 00:00:00 2001 From: Nippun Sharma <53967069+NippunSharma@users.noreply.github.com> Date: Tue, 24 Nov 2020 21:23:17 +0530 Subject: [PATCH] changed comments --- src/mlpack/methods/ann/layer/convolution.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mlpack/methods/ann/layer/convolution.hpp b/src/mlpack/methods/ann/layer/convolution.hpp index ab26c7e80e..bcebf756cf 100644 --- a/src/mlpack/methods/ann/layer/convolution.hpp +++ b/src/mlpack/methods/ann/layer/convolution.hpp @@ -207,10 +207,10 @@ class Convolution //! Modify the output height. size_t& OutputHeight() { return outputHeight; } - //! Get the input size. + //! Get the number of input maps. size_t InputSize() const { return inSize; } - //! Get the output size. + //! Get the number of output maps. size_t OutputSize() const { return outSize; } //! Get the kernel width.