Merge remote-tracking branch 'origin/Delta-Error-Test' into Delta-Error-Test
This commit is contained in:
commit
66ed7afb9f
1 changed files with 1 additions and 1 deletions
|
|
@ -313,7 +313,7 @@ void apply_weights(Neural_Network* network, Matrix* delta_weights_matrix, int in
|
|||
|
||||
for (int i = 0; i < delta_weights_matrix->rows; i++) {
|
||||
for (int j = 0; j < delta_weights_matrix->columns; j++) {
|
||||
network->weights[index]->numbers[i][j] += delta_weights_matrix->numbers[i][j];
|
||||
network->weights[index]->numbers[i][j] += delta_weights_matrix->numbers[i][j]; // multiply delta_weights_matrix with learning rate AND - instead of + because soll-ist
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Reference in a new issue