GPT-SoVITS icon indicating copy to clipboard operation
GPT-SoVITS copied to clipboard

1 min voice data can also be used to train a good TTS model! (few shot voice cloning)

Results 944 GPT-SoVITS issues
Sort by recently updated
recently updated
newest added
trafficstars

GPT 微调报错,但是 1Ba-SoVITS训练 是可以的。 GPT 的训练报错: ``` "/data/home/miniconda3/envs/GPTSoVits/bin/python" GPT_SoVITS/s1_train.py --config_file "TEMP/tmp_s1.yaml" Seed set to 1234 Using 16bit Automatic Mixed Precision (AMP) GPU available: True (cuda), used: True TPU available: False,...

https://colab.research.google.com/drive/1_RSwX_fdiw_lst_FntfJ--vD6IrusQaH?usp=sharing 没什么问题的话我就开pr了

colab run webui.py ``` /content/GPT-SoVITS Traceback (most recent call last): File "/content/GPT-SoVITS/webui.py", line 17, in with open("%s/users.pth"%(site_packages_root),"w")as f: FileNotFoundError: [Errno 2] No such file or directory: '/content/GPT-SoVITS/runtime/Lib/site-packages/users.pth' ``` 能给个colab notebook吗?

In follow-up

Trying to train few shot but i get errors because it's not creating these files: ``` self.path2: logs/xxx/2-name2text.txt self.path4: logs/xxx/4-cnhubert self.path5: logs/xxx/5-wav32k ``` ``` Traceback (most recent call last): File...

In follow-up

Traceback (most recent call last): File "/media/dell/work/workspaces/GPT-SoVITS/tools/damo_asr/cmd-asr.py", line 19, in text = inference_pipeline(audio_in="%s/%s"%(dir,name))["text"] File "/media/dell/work/workspaces/GPT-SoVITS/modelscope/package/modelscope/pipelines/audio/funasr_pipeline.py", line 73, in __call__ output = self.model(*args, **kwargs) File "/media/dell/work/workspaces/GPT-SoVITS/modelscope/package/modelscope/models/base/base_model.py", line 35, in __call__ return...

In follow-up

在某些特定的参考音频和prompt text的组合下,t2s_model会输出bad zero prediction情况,并返回idx=0。这会导致inference_webui.py的第211-213行的 ```python pred_semantic = pred_semantic[:, -idx:].unsqueeze( 0 ) # .unsqueeze(0)#mq要多unsqueeze一次 ``` 处的pred_semantic[:, -0:]错误地将输入序列包含在输出中。 这里是否应该做一个错误检查?

``` D:\GPT-SoVITS>runtime\python.exe webui.py Running on local URL: http://0.0.0.0:9874 "D:\GPT-SoVITS\runtime\python.exe" GPT_SoVITS/s1_train.py --config_file "TEMP/tmp_s1.yaml" Seed set to 1234 Using 16bit Automatic Mixed Precision (AMP) GPU available: True (cuda), used: True TPU available:...

你好,我在點擊开启GPT训练之後出現了以下錯誤,請問該如何解決? 點擊开启SoVITS训练是正常的 我是windows10下運行完整包 ``` "runtime\python" GPT_SoVITS/s1_train.py --config_file "TEMP/tmp_s1.yaml" Seed set to 1234 Using 16bit Automatic Mixed Precision (AMP) GPU available: True (cuda), used: True TPU available: False, using: 0 TPU...

Is there a simple data preprocess script and kick off training guide? Currently I don't know how to train, either how to using my voice to clone

Does my data has only Chinese can few shot learning support both Chinese and English? About 1min voice.

In follow-up