From cfa89dc99e3e8b5271fd2708b5167a11fea9606c Mon Sep 17 00:00:00 2001 From: augustin64 Date: Tue, 17 Jan 2023 15:06:39 +0100 Subject: [PATCH] Typo --- src/cnn/include/backpropagation.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cnn/include/backpropagation.h b/src/cnn/include/backpropagation.h index 1b008eb..61b66ba 100644 --- a/src/cnn/include/backpropagation.h +++ b/src/cnn/include/backpropagation.h @@ -30,7 +30,7 @@ void backward_2d_pooling(float*** input, float*** output, int input_width, int o void backward_fully_connected(Kernel_nn* ker, float* input, float* input_z, float* output, int size_input, int size_output, ptr d_function, int is_first); /* -* Transfert les informatiosn d'erreur à travers une couche de linéarisation +* Transfert les informations d'erreur à travers une couche de linéarisation */ void backward_linearisation(Kernel_nn* ker, float*** input, float*** input_z, float* output, int depth_input, int dim_input, int size_output, ptr d_function);