mirror of
https://github.com/augustin64/projet-tipe
synced 2025-02-02 19:39:39 +01:00
Fix typo
This commit is contained in:
parent
79312caace
commit
1db6c6824d
@ -120,9 +120,9 @@ void free_network(Network* network) {
|
||||
if (network->kernel[i]->cnn != NULL) { // Convolution
|
||||
free_convolution(network, i);
|
||||
} else if (network->kernel[i]->nn != NULL) {
|
||||
if (network->kernel[i]->linearisation == 0) { // Dense non linearised
|
||||
if (network->kernel[i]->linearisation == 0) { // Dense non linearized
|
||||
free_dense(network, i);
|
||||
} else { // Dense lineariation
|
||||
} else { // Dense linearisation
|
||||
free_dense_linearisation(network, i);
|
||||
}
|
||||
} else { // Pooling
|
||||
|
Loading…
Reference in New Issue
Block a user