Merge pull request #507 from v3ucn/修正g2p_en的英文字母发音问题

修正g2p_en的英文字母发音问题
This commit is contained in:
RVC-Boss 2024-02-17 17:22:54 +08:00 committed by GitHub
commit 2855f82eb7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -169,9 +169,9 @@ def read_dict_new():
line = line.strip()
word_split = line.split(" ")
word = word_split[0]
if word not in g2p_dict:
g2p_dict[word] = []
g2p_dict[word].append(word_split[1:])
#if word not in g2p_dict:
g2p_dict[word] = []
g2p_dict[word].append(word_split[1:])
line_index = line_index + 1
line = f.readline()