kevinwang676 commited on
Commit
80d81c7
·
verified ·
1 Parent(s): 46fa8b8

Update GPT_SoVITS/app_vc.py

Browse files
Files changed (1) hide show
  1. GPT_SoVITS/app_vc.py +8 -4
GPT_SoVITS/app_vc.py CHANGED
@@ -56,11 +56,15 @@ def get_pretrain_model_path(env_name, log_file, def_path):
56
  # device = "cuda" if torch.cuda.is_available() else "cpu"
57
  device = 'cpu'
58
 
59
- gpt_path = get_pretrain_model_path('gpt_path', "./gweight.txt",
60
- "GPT_SoVITS/pretrained_models/gsv-v2final-pretrained/s1bert25hz-5kh-longer-epoch=12-step=369668.ckpt")
61
 
62
- sovits_path = get_pretrain_model_path('sovits_path', "./sweight.txt",
63
- "GPT_SoVITS/pretrained_models/s2G488k.pth")
 
 
 
 
64
 
65
  cnhubert_base_path = get_pretrain_model_path("cnhubert_base_path", '', "GPT_SoVITS/pretrained_models/chinese-hubert-base")
66
 
 
56
  # device = "cuda" if torch.cuda.is_available() else "cpu"
57
  device = 'cpu'
58
 
59
+ #gpt_path = get_pretrain_model_path('gpt_path', "./gweight.txt",
60
+ # "GPT_SoVITS/pretrained_models/gsv-v2final-pretrained/s1bert25hz-5kh-longer-epoch=12-step=369668.ckpt")
61
 
62
+ #sovits_path = get_pretrain_model_path('sovits_path', "./sweight.txt",
63
+ # "GPT_SoVITS/pretrained_models/s2G488k.pth")
64
+
65
+ gpt_path = "GPT_SoVITS/pretrained_models/gsv-v2final-pretrained/s1bert25hz-5kh-longer-epoch=12-step=369668.ckpt"
66
+
67
+ sovits_path = "GPT_SoVITS/pretrained_models/s2G488k.pth"
68
 
69
  cnhubert_base_path = get_pretrain_model_path("cnhubert_base_path", '', "GPT_SoVITS/pretrained_models/chinese-hubert-base")
70