mirror of
https://github.com/RVC-Boss/GPT-SoVITS.git
synced 2025-04-06 03:57:44 +08:00
support gpt sovits v2
support gpt sovits v2
This commit is contained in:
parent
0b8592c2a2
commit
de7ee7c7c1
@ -6,7 +6,10 @@ from g2p_en import G2p
|
|||||||
|
|
||||||
from text.symbols import punctuation
|
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
|
import unicodedata
|
||||||
from builtins import str as unicode
|
from builtins import str as unicode
|
||||||
|
@ -5,7 +5,11 @@ import sys
|
|||||||
import pyopenjtalk
|
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
|
from text.symbols import punctuation
|
||||||
# Regular expression matching Japanese without punctuation marks:
|
# Regular expression matching Japanese without punctuation marks:
|
||||||
_japanese_characters = re.compile(
|
_japanese_characters = re.compile(
|
||||||
|
@ -2,7 +2,11 @@ import re
|
|||||||
from jamo import h2j, j2hcj
|
from jamo import h2j, j2hcj
|
||||||
import ko_pron
|
import ko_pron
|
||||||
from g2pk2 import G2p
|
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.
|
# This is a list of Korean classifiers preceded by pure Korean numerals.
|
||||||
_korean_classifiers = '군데 권 개 그루 닢 대 두 마리 모 모금 뭇 발 발짝 방 번 벌 보루 살 수 술 시 쌈 움큼 정 짝 채 척 첩 축 켤레 톨 통'
|
_korean_classifiers = '군데 권 개 그루 닢 대 두 마리 모 모금 뭇 발 발짝 방 번 벌 보루 살 수 술 시 쌈 움큼 정 짝 채 척 첩 축 켤레 톨 통'
|
||||||
|
Loading…
x
Reference in New Issue
Block a user