Skip to content

Commit

Permalink
Merge pull request #25 from F-Tag/fix_typo
Browse files Browse the repository at this point in the history
fix typo in nnmnkwii/baseline/gmm.py
  • Loading branch information
r9y9 committed Aug 29, 2017
2 parents 7a0a991 + 99fb33d commit 61725db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nnmnkwii/baseline/gmm.py
Expand Up @@ -34,7 +34,7 @@ def __init__(self, gmm, swap=False, diff=False):
if swap:
self.tgt_means, self.src_means = self.src_means, self.tgt_means
self.covarYY, self.covarXX = self.covarXX, self.covarYY
self.covarYX, self.covarXY = self.XY, self.covarYX
self.covarYX, self.covarXY = self.covarXY, self.covarYX

# p(x), which is used to compute posterior prob. for a given source
# spectral feature in mapping stage.
Expand Down

0 comments on commit 61725db

Please sign in to comment.