Update english.py

热词应该是覆盖逻辑,因为原版字典里如果key存在的话,那么用户定义的热词纠正发音就不会生效
This commit is contained in:
刘悦 2024-02-17 12:13:43 +08:00 committed by GitHub
parent f6c9803909
commit 709c6c3d40
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()