Update src/mlpack/methods/ann/layer/elu.hpp

Co-authored-by: Ryan Curtin <ryan@ratml.org>
This commit is contained in:
Adam Kropp
2023-11-01 17:45:08 -04:00
committed by GitHub
co-authored by Ryan Curtin
parent 4bae489b06
commit bf18a3d516
+2 -2
View File
@@ -161,8 +161,8 @@ class ELUType : public Layer<MatType>
* @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);