From bf18a3d516408762de9b23d511cd16d5df4e391b Mon Sep 17 00:00:00 2001 From: Adam Kropp <30504149+akropp@users.noreply.github.com> Date: Wed, 1 Nov 2023 17:45:08 -0400 Subject: [PATCH] Update src/mlpack/methods/ann/layer/elu.hpp Co-authored-by: Ryan Curtin --- src/mlpack/methods/ann/layer/elu.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mlpack/methods/ann/layer/elu.hpp b/src/mlpack/methods/ann/layer/elu.hpp index b87cd2704c..4d93d86c84 100644 --- a/src/mlpack/methods/ann/layer/elu.hpp +++ b/src/mlpack/methods/ann/layer/elu.hpp @@ -161,8 +161,8 @@ class ELUType : public Layer * @param gy The backpropagated error. * @param g The calculated gradient. */ - void Backward(const MatType& input, - const MatType& output, + void Backward(const MatType& /* input */, + const MatType& /* output */, const MatType& gy, MatType& g);