Merge branch 'iss2071' of https://github.com/NippunSharma/mlpack into iss2071

This commit is contained in:
NippunSharma
2020-12-12 00:19:26 +05:30
@@ -929,7 +929,7 @@ TEST_CASE("FFNCheckInputShapeTest", "[FeedForwardNetworkTest]")
testData.shed_row(testData.n_rows - 1);
FFN<NegativeLogLikelihood<>, RandomInitialization, CustomLayer<> > model;
// Purposely putting wrong input shape so that error is thrown
// Purposely putting wrong input shape so that error is thrown.
model.Add<Linear<> >(trainData.n_rows - 3, 8);
model.Add<CustomLayer<> >();
model.Add<Linear<> >(8, 3);