Don't forget the period in the output.

This commit is contained in:
Ryan Curtin
2016-05-16 15:12:19 -04:00
parent 3e4f3cade8
commit 986620375c
+1 -1
View File
@@ -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)
{