Skip to content

Commit

Permalink
Merge pull request #2886 from yorkerlin/develop
Browse files Browse the repository at this point in the history
bug fixed
  • Loading branch information
Björn Esser committed Aug 16, 2015
2 parents 120b0f6 + 033e60a commit 228eb3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unit/neuralnets/NeuralNetwork_unittest.cc
Expand Up @@ -229,7 +229,7 @@ TEST(NeuralNetwork, backpropagation_convolutional)
layers->append_element(new CNeuralConvolutionalLayer(
CMAF_LOGISTIC, 1, 1, 1, 1, 1, 1, 1));
layers->append_element(new CNeuralConvolutionalLayer(
CMAF_LOGISTIC, 1, 1, 1, 1, 1, 1, 1, EInitializationMode::RE_NORMAL));
CMAF_LOGISTIC, 1, 1, 1, 1, 1, 1, 1, RE_NORMAL));
layers->append_element(new CNeuralLinearLayer(4));
CNeuralNetwork* network = new CNeuralNetwork(layers);

Expand Down

0 comments on commit 228eb3f

Please sign in to comment.