From be2c1933413080629cf7cb7d34697299bc9ca485 Mon Sep 17 00:00:00 2001 From: Michelle Date: Sat, 16 May 2026 21:36:19 +0200 Subject: [PATCH] Next steps Next up is dropout layers. remember that it can be used to see uncerstaty in multiply output, which is not in the book --- include/modules/neural_networks/layers/Dense_Layer.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/modules/neural_networks/layers/Dense_Layer.h b/include/modules/neural_networks/layers/Dense_Layer.h index bcadd06..2bcaf5e 100644 --- a/include/modules/neural_networks/layers/Dense_Layer.h +++ b/include/modules/neural_networks/layers/Dense_Layer.h @@ -66,7 +66,7 @@ namespace neural_networks{ dbiases = numerics::sum_rowwise(dvalues); - // Gradients on regularization + // Gradients on regularization // L1 on weights if(weight_regularizer_l1){ utils::Matrix dL1(weights.rows(), weights.cols(), T{1});