[mlpack-git] master: Don't forget the period in the output. (9866203)

gitdub at mlpack.org gitdub at mlpack.org
Mon May 16 15:12:19 EDT 2016


Repository : https://github.com/mlpack/mlpack
On branch  : master
Link       : https://github.com/mlpack/mlpack/compare/1f562a1aba7ae55475afcc95659511c2b7f694e5...986620375ce84cdc75fdfd99f63f17b5c8ee507a

>---------------------------------------------------------------

commit 986620375ce84cdc75fdfd99f63f17b5c8ee507a
Author: Ryan Curtin <ryan at ratml.org>
Date:   Mon May 16 15:12:19 2016 -0400

    Don't forget the period in the output.


>---------------------------------------------------------------

986620375ce84cdc75fdfd99f63f17b5c8ee507a
 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 2bfc4cb..05b7a29 100644
--- a/src/mlpack/methods/hmm/hmm_impl.hpp
+++ b/src/mlpack/methods/hmm/hmm_impl.hpp
@@ -186,7 +186,7 @@ void HMM<Distribution>::Train(const std::vector<arma::mat>& dataSeq)
       emission[state].Train(emissionList, emissionProb[state]);
 
     Log::Debug << "Iteration " << iter << ": log-likelihood " << loglik
-        << std::endl;
+        << "." << std::endl;
 
     if (std::abs(oldLoglik - loglik) < tolerance)
     {




More information about the mlpack-git mailing list