PRML icon indicating copy to clipboard operation
PRML copied to clipboard

whether is it an error in computing the gauss of mix_gaussian?

Open wgfi110 opened this issue 6 years ago • 0 comments

in prml/rv/multivariate_gaussian_mixture.py:124 the origin is : D_sq = np.sum(np.einsum('nki,kij->nkj', d, self.cov) * d, -1) should be changed to: D_sq = np.sum(np.einsum('nki,kij->nkj', d, np.linalg.inv(self.cov)) * d, -1)

wgfi110 avatar Oct 29 '19 09:10 wgfi110