From 986620375ce84cdc75fdfd99f63f17b5c8ee507a Mon Sep 17 00:00:00 2001 From: Ryan Curtin Date: Mon, 16 May 2016 15:12:19 -0400 Subject: [PATCH] Don't forget the period in the output. --- src/mlpack/methods/hmm/hmm_impl.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mlpack/methods/hmm/hmm_impl.hpp b/src/mlpack/methods/hmm/hmm_impl.hpp index 2bfc4cb8fe..05b7a292e3 100644 --- a/src/mlpack/methods/hmm/hmm_impl.hpp +++ b/src/mlpack/methods/hmm/hmm_impl.hpp @@ -186,7 +186,7 @@ void HMM::Train(const std::vector& dataSeq) emission[state].Train(emissionList, emissionProb[state]); Log::Debug << "Iteration " << iter << ": log-likelihood " << loglik - << std::endl; + << "." << std::endl; if (std::abs(oldLoglik - loglik) < tolerance) {