添加自定义语言识别器开关

This commit is contained in:
Intro 2025-03-13 05:02:46 +08:00
parent 165882d64f
commit 3ced402f74
No known key found for this signature in database
GPG Key ID: 6D51E0E45C73FBA6

View File

@ -15,6 +15,9 @@ bert_path = "GPT_SoVITS/pretrained_models/chinese-roberta-wwm-ext-large"
pretrained_sovits_path = "GPT_SoVITS/pretrained_models/s2G488k.pth"
pretrained_gpt_path = "GPT_SoVITS/pretrained_models/s1bert25hz-2kh-longer-epoch=68e-step=50232.ckpt"
# 部分模型的启用
enable_costum_langdetect = False
exp_root = "logs"
python_exec = sys.executable or "python"
if torch.cuda.is_available():
@ -54,6 +57,8 @@ class Config:
self.pretrained_sovits_path = pretrained_sovits_path
self.pretrained_gpt_path = pretrained_gpt_path
self.enable_costum_langdetect = enable_costum_langdetect
self.exp_root = exp_root
self.python_exec = python_exec
self.infer_device = infer_device