From 7acd8a80432818c673e43e5e8249fb030fe23399 Mon Sep 17 00:00:00 2001 From: Adam Kropp <30504149+akropp@users.noreply.github.com> Date: Wed, 1 Nov 2023 18:07:52 -0400 Subject: [PATCH] Update src/mlpack/methods/ann/layer/softmin.hpp Co-authored-by: Ryan Curtin --- src/mlpack/methods/ann/layer/softmin.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mlpack/methods/ann/layer/softmin.hpp b/src/mlpack/methods/ann/layer/softmin.hpp index 220e27fbe1..e7146e585e 100644 --- a/src/mlpack/methods/ann/layer/softmin.hpp +++ b/src/mlpack/methods/ann/layer/softmin.hpp @@ -68,7 +68,7 @@ class SoftminType : public Layer * @param gy The backpropagated error. * @param g The calculated gradient. */ - void Backward(const MatType& input, + void Backward(const MatType& /* input */, const MatType& output, const MatType& gy, MatType& g);