Skip to content

Commit 5d60704

Browse files
committed
clang
1 parent fd77a82 commit 5d60704

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

include/layers/BatchNormalizationLayer.hpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ class BatchNormalizationLayer : public Layer {
1212
const Tensor& mean, const Tensor& var,
1313
float epsilon = 1e-5F, float momentum = 0.9F,
1414
bool training_mode = false)
15-
: Layer(kBatchNormalization), scale_(scale),
15+
: Layer(kBatchNormalization),
16+
scale_(scale),
1617
bias_(bias),
1718
mean_(mean),
1819
var_(var),

0 commit comments

Comments
 (0)