This commit is contained in:
augustin64 2023-01-17 15:06:39 +01:00
parent 61468044a9
commit cfa89dc99e

View File

@ -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);