mirror of
https://github.com/augustin64/projet-tipe
synced 2025-01-23 15:16:26 +01:00
Suppression de warning durant la compilation
This commit is contained in:
parent
b7b90f9cab
commit
4df1bf7b5b
@ -11,7 +11,7 @@ int max(int a, int b) {
|
||||
return a > b ? a : b;
|
||||
}
|
||||
|
||||
void softmax_backward_mse(float* input, float* input_z, float* output, int size) {
|
||||
void softmax_backward_mse(float* input, float* output, int size) {
|
||||
/* Input et output ont la même taille */
|
||||
|
||||
for (int i=0; i < size; i++){
|
||||
@ -19,7 +19,7 @@ void softmax_backward_mse(float* input, float* input_z, float* output, int size)
|
||||
}
|
||||
}
|
||||
|
||||
void softmax_backward_cross_entropy(float* input, float* input_z, float* output, int size) {
|
||||
void softmax_backward_cross_entropy(float* input, float* output, int size) {
|
||||
/* Input et output ont la même taille */
|
||||
|
||||
for (int i=0; i < size; i++){
|
||||
|
@ -143,7 +143,7 @@ void backward_propagation(Network* network, int wanted_number) {
|
||||
Kernel* k_i;
|
||||
|
||||
// Backward sur la dernière couche
|
||||
softmax_backward_cross_entropy(network->input[n-1][0][0], network->input_z[n-1][0][0], wanted_output, network->width[n-1]);
|
||||
softmax_backward_cross_entropy(network->input[n-1][0][0], wanted_output, network->width[n-1]);
|
||||
|
||||
for (int i=n-2; i >= 0; i--) {
|
||||
// Modifie 'k_i' à partir d'une comparaison d'informations entre 'input' et 'output'
|
||||
|
@ -17,13 +17,13 @@ int max(int a, int b);
|
||||
/*
|
||||
* Transfert les informations d'erreur de la sortie voulue à la sortie réelle
|
||||
*/
|
||||
void softmax_backward_mse(float* input, float* input_z, float* output, int size);
|
||||
void softmax_backward_mse(float* input, float* output, int size);
|
||||
|
||||
/*
|
||||
* Transfert les informations d'erreur de la sortie voulue à la sortie réelle
|
||||
* en considérant MSE (Mean Squared Error) comme fonction d'erreur
|
||||
*/
|
||||
void softmax_backward_cross_entropy(float* input, float* input_z, float* output, int size);
|
||||
void softmax_backward_cross_entropy(float* input, float* output, int size);
|
||||
|
||||
/*
|
||||
* Transfert les informations d'erreur à travers une couche d'average pooling
|
||||
|
Loading…
Reference in New Issue
Block a user