mirror of
https://github.com/pjreddie/darknet.git
synced 2023-08-10 21:13:14 +03:00
Nist NIN testing multi-crop
This commit is contained in:
@@ -166,7 +166,7 @@ void learn_bias_convolutional_layer(convolutional_layer layer)
|
||||
*convolutional_out_width(layer);
|
||||
for(b = 0; b < layer.batch; ++b){
|
||||
for(i = 0; i < layer.n; ++i){
|
||||
layer.bias_updates[i] += mean_array(layer.delta+size*(i+b*layer.n), size);
|
||||
layer.bias_updates[i] += sum_array(layer.delta+size*(i+b*layer.n), size);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user