One of the log10sumLog10s in the VQSR was missed in a previous bug fix. Thanks to Mike McCowan for spotting this one.

This commit is contained in:
Ryan Poplin 2013-08-28 12:40:08 -04:00
parent 42d771f748
commit 6bda569666
1 changed files with 1 additions and 1 deletions

View File

@ -283,7 +283,7 @@ public class GaussianMixtureModel {
}
// add this sample's probability to the pile in order to take an average in the end
sumPVarInGaussian += Math.pow(10.0, MathUtils.log10sumLog10(pVarInGaussianLog10)); // p = 10 ^ Sum(pi_k * p(v|n,k))
sumPVarInGaussian += Math.pow(10.0, nanTolerantLog10SumLog10(pVarInGaussianLog10)); // p = 10 ^ Sum(pi_k * p(v|n,k))
numRandomDraws++;
}
}