VITS-fast-fine-tuning训练环境包(Windows)
https://github.com/Artrajz/VITS-fast-fine-tuning/releases/tag/v0.1
这是一个安装好环境依赖的Windows环境包,注意里面没有下载预训练模型和辅助训练集
使用说明
点击start.bat启动会出现一个cmd窗口,根据原教程输入命令使用,不过需要把命令中的python替换成%PYTHON%,否则无法使用到环境包里的python环境。
举个例子:
原命令
python finetune_speaker_v2.py -m output_model --max_epochs 1000 --drop_speaker_embed false -c configs/modified_finetune_speaker.json --cont true --train_with_pretrained_model false --preserved 4
替换后
%PYTHON% finetune_speaker_v2.py -m output_model --max_epochs 1000 --drop_speaker_embed false -c configs/modified_finetune_speaker.json --cont true --train_with_pretrained_model false --preserved 4
如果需要更新代码,下载原项目的代码直接覆盖即可https://github.com/Plachtaa/VITS-fast-fine-tuning
环境依赖是通用的(除非新加了什么第三方库)
如果需要使用pip,可以在弹出的窗口里输入%PYTHON% -m pip install xxx来安装其他库。