From 709c6c3d4031cd1bdbdb26ee1bece9d67e45616c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=88=98=E6=82=A6?= Date: Sat, 17 Feb 2024 12:13:43 +0800 Subject: [PATCH] Update english.py MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 热词应该是覆盖逻辑,因为原版字典里如果key存在的话,那么用户定义的热词纠正发音就不会生效 --- GPT_SoVITS/text/english.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/GPT_SoVITS/text/english.py b/GPT_SoVITS/text/english.py index 0a5d6c2..90f48a5 100644 --- a/GPT_SoVITS/text/english.py +++ b/GPT_SoVITS/text/english.py @@ -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()