diff --git a/src/mlpack/tests/ann/layer/parametric_relu.cpp b/src/mlpack/tests/ann/layer/parametric_relu.cpp index 43904d304d..8c3ab562a1 100644 --- a/src/mlpack/tests/ann/layer/parametric_relu.cpp +++ b/src/mlpack/tests/ann/layer/parametric_relu.cpp @@ -130,8 +130,6 @@ TEST_CASE("PReLUIntegrationTest", "[ANNLayerTest]") double msreTrain = ComputeMSRE(predictions, trainLabels); model.Predict(testData, predictions); double msreTest = ComputeMSRE(predictions, testLabels); - std::cout << "train: " << msreTrain << "\n"; - std::cout << "test: " << msreTest << "\n"; double relativeMSRE = std::abs((msreTest - msreTrain) / msreTrain); if (relativeMSRE <= 0.35)