support gpt sovits v2

support gpt sovits v2
This commit is contained in:
RVC-Boss 2024-08-02 17:51:18 +08:00 committed by GitHub
parent 0b8592c2a2
commit de7ee7c7c1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 14 additions and 3 deletions

View File

@ -6,7 +6,10 @@ from g2p_en import G2p
from text.symbols import punctuation
from text import symbols
if os.environ.get("version","v1")=="v1":
from text.symbols import symbols
else:
from text.symbols2 import symbols
import unicodedata
from builtins import str as unicode

View File

@ -5,7 +5,11 @@ import sys
import pyopenjtalk
from text import symbols
import os
if os.environ.get("version","v1")=="v1":
from text.symbols import symbols
else:
from text.symbols2 import symbols
from text.symbols import punctuation
# Regular expression matching Japanese without punctuation marks:
_japanese_characters = re.compile(

View File

@ -2,7 +2,11 @@ import re
from jamo import h2j, j2hcj
import ko_pron
from g2pk2 import G2p
from text import symbols
import os
if os.environ.get("version","v1")=="v1":
from text.symbols import symbols
else:
from text.symbols2 import symbols
# This is a list of Korean classifiers preceded by pure Korean numerals.
_korean_classifiers = '군데 권 개 그루 닢 대 두 마리 모 모금 뭇 발 발짝 방 번 벌 보루 살 수 술 시 쌈 움큼 정 짝 채 척 첩 축 켤레 톨 통'