├── LICENSE ├── README.md ├── attentions.py ├── commons.py ├── configs └── config.json ├── custom_character_voice └── 22050.txt ├── data_utils.py ├── filelists ├── short_character_anno.list ├── short_character_anno_train.list.cleaned └── short_character_anno_val.list.cleaned ├── inference.ipynb ├── inference.py ├── logs └── OUTPUT_MODEL │ └── README.md ├── losses.py ├── mel_processing.py ├── models.py ├── modules.py ├── monotonic_align ├── __init__.py ├── core.pyx ├── monotonic_align │ └── .gitkeep └── setup.py ├── pqmf.py ├── preprocess.py ├── requirements.txt ├── short_audio_transcribe.py ├── split.py ├── stft.py ├── stft_loss.py ├── text ├── LICENSE ├── __init__.py ├── cantonese.py ├── cleaners.py ├── english.py ├── japanese.py ├── korean.py ├── mandarin.py ├── ngu_dialect.py ├── sanskrit.py ├── shanghainese.py ├── symbols.py └── thai.py ├── train.py ├── train_ms.py ├── transforms.py └── utils.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinWang676/VITS2-Chinese/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinWang676/VITS2-Chinese/HEAD/README.md -------------------------------------------------------------------------------- /attentions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinWang676/VITS2-Chinese/HEAD/attentions.py -------------------------------------------------------------------------------- /commons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinWang676/VITS2-Chinese/HEAD/commons.py -------------------------------------------------------------------------------- /configs/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinWang676/VITS2-Chinese/HEAD/configs/config.json -------------------------------------------------------------------------------- /custom_character_voice/22050.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinWang676/VITS2-Chinese/HEAD/data_utils.py -------------------------------------------------------------------------------- /filelists/short_character_anno.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinWang676/VITS2-Chinese/HEAD/filelists/short_character_anno.list -------------------------------------------------------------------------------- /filelists/short_character_anno_train.list.cleaned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinWang676/VITS2-Chinese/HEAD/filelists/short_character_anno_train.list.cleaned -------------------------------------------------------------------------------- /filelists/short_character_anno_val.list.cleaned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinWang676/VITS2-Chinese/HEAD/filelists/short_character_anno_val.list.cleaned -------------------------------------------------------------------------------- /inference.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinWang676/VITS2-Chinese/HEAD/inference.ipynb -------------------------------------------------------------------------------- /inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinWang676/VITS2-Chinese/HEAD/inference.py -------------------------------------------------------------------------------- /logs/OUTPUT_MODEL/README.md: -------------------------------------------------------------------------------- 1 | If there are pretrained models, please put them under this folder | 如果有预训练模型,请将它们放在此文件夹下 2 | -------------------------------------------------------------------------------- /losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinWang676/VITS2-Chinese/HEAD/losses.py -------------------------------------------------------------------------------- /mel_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinWang676/VITS2-Chinese/HEAD/mel_processing.py -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinWang676/VITS2-Chinese/HEAD/models.py -------------------------------------------------------------------------------- /modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinWang676/VITS2-Chinese/HEAD/modules.py -------------------------------------------------------------------------------- /monotonic_align/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinWang676/VITS2-Chinese/HEAD/monotonic_align/__init__.py -------------------------------------------------------------------------------- /monotonic_align/core.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinWang676/VITS2-Chinese/HEAD/monotonic_align/core.pyx -------------------------------------------------------------------------------- /monotonic_align/monotonic_align/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /monotonic_align/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinWang676/VITS2-Chinese/HEAD/monotonic_align/setup.py -------------------------------------------------------------------------------- /pqmf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinWang676/VITS2-Chinese/HEAD/pqmf.py -------------------------------------------------------------------------------- /preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinWang676/VITS2-Chinese/HEAD/preprocess.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinWang676/VITS2-Chinese/HEAD/requirements.txt -------------------------------------------------------------------------------- /short_audio_transcribe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinWang676/VITS2-Chinese/HEAD/short_audio_transcribe.py -------------------------------------------------------------------------------- /split.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinWang676/VITS2-Chinese/HEAD/split.py -------------------------------------------------------------------------------- /stft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinWang676/VITS2-Chinese/HEAD/stft.py -------------------------------------------------------------------------------- /stft_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinWang676/VITS2-Chinese/HEAD/stft_loss.py -------------------------------------------------------------------------------- /text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinWang676/VITS2-Chinese/HEAD/text/LICENSE -------------------------------------------------------------------------------- /text/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinWang676/VITS2-Chinese/HEAD/text/__init__.py -------------------------------------------------------------------------------- /text/cantonese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinWang676/VITS2-Chinese/HEAD/text/cantonese.py -------------------------------------------------------------------------------- /text/cleaners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinWang676/VITS2-Chinese/HEAD/text/cleaners.py -------------------------------------------------------------------------------- /text/english.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinWang676/VITS2-Chinese/HEAD/text/english.py -------------------------------------------------------------------------------- /text/japanese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinWang676/VITS2-Chinese/HEAD/text/japanese.py -------------------------------------------------------------------------------- /text/korean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinWang676/VITS2-Chinese/HEAD/text/korean.py -------------------------------------------------------------------------------- /text/mandarin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinWang676/VITS2-Chinese/HEAD/text/mandarin.py -------------------------------------------------------------------------------- /text/ngu_dialect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinWang676/VITS2-Chinese/HEAD/text/ngu_dialect.py -------------------------------------------------------------------------------- /text/sanskrit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinWang676/VITS2-Chinese/HEAD/text/sanskrit.py -------------------------------------------------------------------------------- /text/shanghainese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinWang676/VITS2-Chinese/HEAD/text/shanghainese.py -------------------------------------------------------------------------------- /text/symbols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinWang676/VITS2-Chinese/HEAD/text/symbols.py -------------------------------------------------------------------------------- /text/thai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinWang676/VITS2-Chinese/HEAD/text/thai.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinWang676/VITS2-Chinese/HEAD/train.py -------------------------------------------------------------------------------- /train_ms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinWang676/VITS2-Chinese/HEAD/train_ms.py -------------------------------------------------------------------------------- /transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinWang676/VITS2-Chinese/HEAD/transforms.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinWang676/VITS2-Chinese/HEAD/utils.py --------------------------------------------------------------------------------