Update config.py

updated default pertained model paths
This commit is contained in:
kahwaipd 2024-04-02 14:53:29 +08:00 committed by GitHub
parent 1fca6b283c
commit abd3a35758
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -10,10 +10,10 @@ is_half = True if is_half_str.lower() == 'true' else False
is_share_str = os.environ.get("is_share","False") is_share_str = os.environ.get("is_share","False")
is_share= True if is_share_str.lower() == 'true' else False is_share= True if is_share_str.lower() == 'true' else False
cnhubert_path = "GPT_SoVITS/pretrained_models/chinese-hubert-base" cnhubert_path = "/app/data/c1/chinese-hubert-base"
bert_path = "GPT_SoVITS/pretrained_models/chinese-roberta-wwm-ext-large" bert_path = "/app/data/c1/chinese-roberta-wwm-ext-large"
pretrained_sovits_path = "GPT_SoVITS/pretrained_models/s2G488k.pth" pretrained_sovits_path = "/app/data/c1/sovits.pth"
pretrained_gpt_path = "GPT_SoVITS/pretrained_models/s1bert25hz-2kh-longer-epoch=68e-step=50232.ckpt" pretrained_gpt_path = "/app/data/c1/gpt.ckpt"
exp_root = "logs" exp_root = "logs"
python_exec = sys.executable or "python" python_exec = sys.executable or "python"