From c55726b1130242022cf851524c0c2e0e3d72bf4a Mon Sep 17 00:00:00 2001 From: Martin Beseda <martin.beseda@vsb.cz> Date: Tue, 22 Jan 2019 15:05:24 +0100 Subject: [PATCH] FIX: Added missing spaces in DEBUG messages. --- src/LearningMethods/GradientDescent.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/LearningMethods/GradientDescent.cpp b/src/LearningMethods/GradientDescent.cpp index 27e7808b..440a0722 100644 --- a/src/LearningMethods/GradientDescent.cpp +++ b/src/LearningMethods/GradientDescent.cpp @@ -176,13 +176,13 @@ namespace lib4neuro { } else { COUT_INFO("Gradient Descent method converged after " << this->maximum_niters-iter_idx - << "iterations." + << " iterations." << std::endl); #ifdef L4N_DEBUG if(ofs && ofs->is_open()) { *ofs << "Gradient Descent method converged after " << this->maximum_niters-iter_idx - << "iterations." + << " iterations." << std::endl; } #endif -- GitLab