├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── abc1.wav ├── attentions.py ├── commons.py ├── configs ├── ljs_base.json ├── ljs_nosdp.json ├── man_test_base.json ├── vctk_base.json └── woman_csmsc.json ├── data_utils.py ├── infer.py ├── logs └── woman_csmsc │ └── G_100000.pth ├── losses.py ├── mel_processing.py ├── models.py ├── modules.py ├── preprocess.py ├── pretest.py ├── requirements.txt ├── test └── woman_csmsc.txt.2.cleaned ├── text ├── LICENSE ├── __init__.py ├── cleaners.py └── symbols.py ├── train.py ├── train_ms.py ├── transforms.py └── utils.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wac81/vits_chinese/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wac81/vits_chinese/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wac81/vits_chinese/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wac81/vits_chinese/HEAD/README.md -------------------------------------------------------------------------------- /abc1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wac81/vits_chinese/HEAD/abc1.wav -------------------------------------------------------------------------------- /attentions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wac81/vits_chinese/HEAD/attentions.py -------------------------------------------------------------------------------- /commons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wac81/vits_chinese/HEAD/commons.py -------------------------------------------------------------------------------- /configs/ljs_base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wac81/vits_chinese/HEAD/configs/ljs_base.json -------------------------------------------------------------------------------- /configs/ljs_nosdp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wac81/vits_chinese/HEAD/configs/ljs_nosdp.json -------------------------------------------------------------------------------- /configs/man_test_base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wac81/vits_chinese/HEAD/configs/man_test_base.json -------------------------------------------------------------------------------- /configs/vctk_base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wac81/vits_chinese/HEAD/configs/vctk_base.json -------------------------------------------------------------------------------- /configs/woman_csmsc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wac81/vits_chinese/HEAD/configs/woman_csmsc.json -------------------------------------------------------------------------------- /data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wac81/vits_chinese/HEAD/data_utils.py -------------------------------------------------------------------------------- /infer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wac81/vits_chinese/HEAD/infer.py -------------------------------------------------------------------------------- /logs/woman_csmsc/G_100000.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wac81/vits_chinese/HEAD/logs/woman_csmsc/G_100000.pth -------------------------------------------------------------------------------- /losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wac81/vits_chinese/HEAD/losses.py -------------------------------------------------------------------------------- /mel_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wac81/vits_chinese/HEAD/mel_processing.py -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wac81/vits_chinese/HEAD/models.py -------------------------------------------------------------------------------- /modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wac81/vits_chinese/HEAD/modules.py -------------------------------------------------------------------------------- /preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wac81/vits_chinese/HEAD/preprocess.py -------------------------------------------------------------------------------- /pretest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wac81/vits_chinese/HEAD/pretest.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wac81/vits_chinese/HEAD/requirements.txt -------------------------------------------------------------------------------- /test/woman_csmsc.txt.2.cleaned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wac81/vits_chinese/HEAD/test/woman_csmsc.txt.2.cleaned -------------------------------------------------------------------------------- /text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wac81/vits_chinese/HEAD/text/LICENSE -------------------------------------------------------------------------------- /text/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wac81/vits_chinese/HEAD/text/__init__.py -------------------------------------------------------------------------------- /text/cleaners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wac81/vits_chinese/HEAD/text/cleaners.py -------------------------------------------------------------------------------- /text/symbols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wac81/vits_chinese/HEAD/text/symbols.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wac81/vits_chinese/HEAD/train.py -------------------------------------------------------------------------------- /train_ms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wac81/vits_chinese/HEAD/train_ms.py -------------------------------------------------------------------------------- /transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wac81/vits_chinese/HEAD/transforms.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wac81/vits_chinese/HEAD/utils.py --------------------------------------------------------------------------------