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:
parent
42d771f748
commit
6bda569666
|
|
@ -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++;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue