From f60a80f8c55a3f9c57ee7db492ed63c1170f160f Mon Sep 17 00:00:00 2001 From: augustin64 Date: Sat, 18 Feb 2023 13:10:42 +0100 Subject: [PATCH] Fix typo --- src/cnn/include/struct.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cnn/include/struct.h b/src/cnn/include/struct.h index c29d1a4..1f314d8 100644 --- a/src/cnn/include/struct.h +++ b/src/cnn/include/struct.h @@ -39,7 +39,7 @@ typedef struct Network{ int* depth; // depth[size] Kernel** kernel; // kernel[size], contient tous les kernels float**** input; // Tableau de toutes les couches du réseau input[size][couche->depth][couche->width][couche->width] - float**** input_z; // Même tableau que input mais ne contient paas la dernière fonction d'activation à chaque ligne + float**** input_z; // Même tableau que input mais ne contient pas la dernière fonction d'activation à chaque ligne } Network; #endif \ No newline at end of file