mirror of
https://github.com/RVC-Boss/GPT-SoVITS.git
synced 2025-04-05 12:38:35 +08:00
54 lines
1.5 KiB
Python
54 lines
1.5 KiB
Python
import sys,os
|
|
|
|
import torch
|
|
|
|
# 推理用的指定模型
|
|
sovits_path = ""
|
|
gpt_path = ""
|
|
is_half = eval(os.environ.get("is_half","True"))
|
|
is_share=False
|
|
|
|
cnhubert_path = "GPT_SoVITS/pretrained_models/chinese-hubert-base"
|
|
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"
|
|
|
|
exp_root = "logs"
|
|
python_exec = sys.executable or "python"
|
|
if torch.cuda.is_available():
|
|
infer_device = "cuda"
|
|
elif torch.backends.mps.is_available():
|
|
infer_device = "mps"
|
|
else:
|
|
infer_device = "cpu"
|
|
|
|
webui_port_main = 9874
|
|
webui_port_uvr5 = 9873
|
|
webui_port_infer_tts = 9872
|
|
webui_port_subfix = 9871
|
|
|
|
api_port = 9880
|
|
|
|
|
|
class Config:
|
|
def __init__(self):
|
|
self.sovits_path = sovits_path
|
|
self.gpt_path = gpt_path
|
|
self.is_half = is_half
|
|
|
|
self.cnhubert_path = cnhubert_path
|
|
self.bert_path = bert_path
|
|
self.pretrained_sovits_path = pretrained_sovits_path
|
|
self.pretrained_gpt_path = pretrained_gpt_path
|
|
|
|
self.exp_root = exp_root
|
|
self.python_exec = python_exec
|
|
self.infer_device = infer_device
|
|
|
|
self.webui_port_main = webui_port_main
|
|
self.webui_port_uvr5 = webui_port_uvr5
|
|
self.webui_port_infer_tts = webui_port_infer_tts
|
|
self.webui_port_subfix = webui_port_subfix
|
|
|
|
self.api_port = api_port
|