mirror of
https://github.com/RVC-Boss/GPT-SoVITS.git
synced 2025-10-07 15:19:59 +08:00
Fix RegEX
This commit is contained in:
parent
ff8a0ea4a0
commit
cb6fbdad74
@ -237,7 +237,7 @@ def text_normalize(text):
|
|||||||
text = normalize_numbers(text)
|
text = normalize_numbers(text)
|
||||||
text = ''.join(char for char in unicodedata.normalize('NFD', text)
|
text = ''.join(char for char in unicodedata.normalize('NFD', text)
|
||||||
if unicodedata.category(char) != 'Mn') # Strip accents
|
if unicodedata.category(char) != 'Mn') # Strip accents
|
||||||
text = re.sub("[^ A-Za-z'.,?!\-]", "", text)
|
text = re.sub(r"[^ A-Za-z'.,?!\-]", "", text)
|
||||||
text = re.sub(r"(?i)i\.e\.", "that is", text)
|
text = re.sub(r"(?i)i\.e\.", "that is", text)
|
||||||
text = re.sub(r"(?i)e\.g\.", "for example", text)
|
text = re.sub(r"(?i)e\.g\.", "for example", text)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user