Skip to content

Commit a91e397

Browse files
authored
Merge pull request #101 from kokimame/patch-1
Fix typo
2 parents fb288bb + 95ab0f5 commit a91e397

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

deepvoice3_pytorch/frontend/en/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66

77
n_vocab = len(symbols)
88

9-
_arphabet = nltk.corpus.cmudict.dict()
9+
_arpabet = nltk.corpus.cmudict.dict()
1010

1111

1212
def _maybe_get_arpabet(word, p):
1313
try:
14-
phonemes = _arphabet[word][0]
14+
phonemes = _arpabet[word][0]
1515
phonemes = " ".join(phonemes)
1616
except KeyError:
1717
return word

0 commit comments

Comments
 (0)