mirror of
https://github.com/RVC-Boss/GPT-SoVITS.git
synced 2025-04-27 03:56:41 +08:00
Revert "fix chinese number to pinyin"
This commit is contained in:
parent
3fd929184d
commit
2d69f103a3
@ -12,8 +12,6 @@ sys.path.append("/data/docker/liujing04/gpt-vits/gpt-vits-master")
|
|||||||
from text.symbols import punctuation
|
from text.symbols import punctuation
|
||||||
from text.tone_sandhi import ToneSandhi
|
from text.tone_sandhi import ToneSandhi
|
||||||
|
|
||||||
normalizer = lambda x: cn2an.transform(x, "an2cn")
|
|
||||||
|
|
||||||
current_file_path = os.path.dirname(__file__)
|
current_file_path = os.path.dirname(__file__)
|
||||||
pinyin_to_symbol_map = {
|
pinyin_to_symbol_map = {
|
||||||
line.split("\t")[0]: line.strip().split("\t")[1]
|
line.split("\t")[0]: line.strip().split("\t")[1]
|
||||||
@ -153,8 +151,10 @@ def _g2p(segments):
|
|||||||
|
|
||||||
|
|
||||||
def text_normalize(text):
|
def text_normalize(text):
|
||||||
dest_text=normalizer(text)
|
numbers = re.findall(r"\d+(?:\.?\d+)?", text)
|
||||||
text = replace_punctuation(dest_text)
|
for number in numbers:
|
||||||
|
text = text.replace(number, cn2an.an2cn(number), 1)
|
||||||
|
text = replace_punctuation(text)
|
||||||
|
|
||||||
return text
|
return text
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user