mirror of
https://github.com/RVC-Boss/GPT-SoVITS.git
synced 2025-04-06 03:57:44 +08:00
Fix text formatting
This commit is contained in:
parent
7823fa08dc
commit
55f82e9ad1
@ -562,10 +562,13 @@ def cut5(inp):
|
|||||||
# if not re.search(r'[^\w\s]', inp[-1]):
|
# if not re.search(r'[^\w\s]', inp[-1]):
|
||||||
# inp += '。'
|
# inp += '。'
|
||||||
inp = inp.strip("\n")
|
inp = inp.strip("\n")
|
||||||
punds = r'[,.;?!、,。?!;:]'
|
punds = r'[,.;?!、,。?!;:…]'
|
||||||
items = re.split(f'({punds})', inp)
|
items = re.split(f'({punds})', inp)
|
||||||
items = ["".join(group) for group in zip(items[::2], items[1::2])]
|
mergeitems = ["".join(group) for group in zip(items[::2], items[1::2])]
|
||||||
opt = "\n".join(items)
|
# 在句子不存在符号或句尾无符号的时候保证文本完整
|
||||||
|
if len(items)%2 == 1:
|
||||||
|
mergeitems.append(items[-1])
|
||||||
|
opt = "\n".join(mergeitems)
|
||||||
return opt
|
return opt
|
||||||
|
|
||||||
|
|
||||||
|
@ -30,7 +30,7 @@ rep_map = {
|
|||||||
"\n": ".",
|
"\n": ".",
|
||||||
"·": ",",
|
"·": ",",
|
||||||
"、": ",",
|
"、": ",",
|
||||||
"...": "…",
|
# "...": "…",
|
||||||
"$": ".",
|
"$": ".",
|
||||||
"/": ",",
|
"/": ",",
|
||||||
"—": "-",
|
"—": "-",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user