From 2f8bf7873cf5baf4e924b1ca5d9ddfe39b1d09c4 Mon Sep 17 00:00:00 2001 From: Adam Kropp <30504149+akropp@users.noreply.github.com> Date: Wed, 1 Nov 2023 17:59:52 -0400 Subject: [PATCH] Update src/mlpack/methods/ann/layer/lstm.hpp Co-authored-by: Ryan Curtin --- src/mlpack/methods/ann/layer/lstm.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mlpack/methods/ann/layer/lstm.hpp b/src/mlpack/methods/ann/layer/lstm.hpp index 92c06bad69..1deaf7756d 100644 --- a/src/mlpack/methods/ann/layer/lstm.hpp +++ b/src/mlpack/methods/ann/layer/lstm.hpp @@ -108,8 +108,8 @@ class LSTMType : public RecurrentLayer * @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);