From bcb9914b6006f4d32b3c7ae0623dbaa8266ad8ed Mon Sep 17 00:00:00 2001 From: KamioRinn Date: Fri, 15 Mar 2024 02:53:14 +0800 Subject: [PATCH] Fix chinese ellipsis --- GPT_SoVITS/text/zh_normalization/text_normlization.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GPT_SoVITS/text/zh_normalization/text_normlization.py b/GPT_SoVITS/text/zh_normalization/text_normlization.py index 712537d..b4c1494 100644 --- a/GPT_SoVITS/text/zh_normalization/text_normlization.py +++ b/GPT_SoVITS/text/zh_normalization/text_normlization.py @@ -113,7 +113,7 @@ class TextNormalizer(): sentence = sentence.replace('ψ', '普赛').replace('Ψ', '普赛') sentence = sentence.replace('ω', '欧米伽').replace('Ω', '欧米伽') # re filter special characters, have one more character "-" than line 68 - sentence = re.sub(r'[-——《》【】<=>{}()()#&@“”^_|…\\]', '', sentence) + sentence = re.sub(r'[-——《》【】<=>{}()()#&@“”^_|\\]', '', sentence) return sentence def normalize_sentence(self, sentence: str) -> str: