gpt-sovits_kaggle.ipynb install.sh requirements.txt webui.py This branch is15 commits ahead of,143 commits behindRVC-Boss/GPT-SoVITS:main. Folders and files Name Last commit message Last commit date parent directory .. AR All in one! 合并main分支和fast_inference_分支 (RVC-Boss#1490) ...
This branch is29 commits ahead of,19 commits behindRVC-Boss/GPT-SoVITS:main. Folders and files Name Last commit message Last commit date parent directory .. asr fix bug Aug 16, 2024 denoise-model Create .gitignore Feb 21, 2024 i18n ...
main 克隆/下载 分支3 标签1 RVC-Boss Update inference_webui.py 2cd843d 2个月前 858 次提交 Docker 明确Dockerfile中所使用的asr模型的版本,使得和cmd-asr.py中保持一致 1年前 GPT_SoVITS Update inference_webui.py 2个月前 docs Update README.md 2个月前 tools Update audio_sr...
如果你是 Windows 用户(已在 win>=10 上测试),可以直接下载预打包文件,解压后双击 go-webui.bat 即可启动 GPT-SoVITS-WebUI。 中国地区用户可以进入此处并点击“下载副本”进行下载。 Linux conda create -n GPTSoVits python=3.9 conda activate GPTSoVits bash install.sh ...
This branch is402 commits behindRVC-Boss/GPT-SoVITS:main. Folders and files Name Last commit message Last commit date parent directory .. cn Update Changelog_CN.md Feb 16, 2024 ja 修改原有Dockerfile和文档中错误的端口号;Dockerfile中可以去掉 VOLUME 的声明,同时将端口暴露缩减成一行。
1 min voice data can also be used to train a good TTS model! (few shot voice cloning) - GPT-SoVITS/Dockerfile at main · guolixue/GPT-SoVITS
1 min voice data can also be used to train a good TTS model! (few shot voice cloning) - GPT-SoVITS/api.py at main · my-x-boo/GPT-SoVITS
1 min voice data can also be used to train a good TTS model! (few shot voice cloning) - GPT-SoVITS/docker-compose.yaml at main · a-cold-bird/GPT-SoVITS
1 min voice data can also be used to train a good TTS model! (few shot voice cloning) - GPT-SoVITS/webui.py at main · a-cold-bird/GPT-SoVITS
import sys,os import torch # 推理用的指定模型 sovits_path = "" gpt_path = "" is_half_str = os.environ.get("is_half", "True") is_half = True if is_half_str.lower() == 'true' else False is_share_str = os.environ.get("is_share","False") is_share= True if is_share_st...