From fa169e3a37752625dfc7a871dad07c0f40152242 Mon Sep 17 00:00:00 2001 From: julienChemillier Date: Sat, 13 May 2023 10:36:27 +0200 Subject: [PATCH] Removal of useless comments --- src/cnn/creation.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cnn/creation.c b/src/cnn/creation.c index 32644bf..18dea7e 100644 --- a/src/cnn/creation.c +++ b/src/cnn/creation.c @@ -115,7 +115,7 @@ void add_average_pooling(Network* network, int dim_output) { network->kernel[k_pos]->linearisation = DOESNT_LINEARISE; network->kernel[k_pos]->pooling = AVG_POOLING; create_a_cube_input_layer(network, n, network->depth[n-1], network->width[n-1]/2); - create_a_cube_input_z_layer(network, n, network->depth[n-1], network->width[n-1]/2); // Will it be used ? + create_a_cube_input_z_layer(network, n, network->depth[n-1], network->width[n-1]/2); network->size++; } @@ -137,7 +137,7 @@ void add_max_pooling(Network* network, int dim_output) { network->kernel[k_pos]->linearisation = DOESNT_LINEARISE; network->kernel[k_pos]->pooling = MAX_POOLING; create_a_cube_input_layer(network, n, network->depth[n-1], network->width[n-1]/2); - create_a_cube_input_z_layer(network, n, network->depth[n-1], network->width[n-1]/2); // Will it be used ? + create_a_cube_input_z_layer(network, n, network->depth[n-1], network->width[n-1]/2); network->size++; }