├── LICENSE ├── README.md ├── attentions.py ├── commons.py ├── configs ├── ljs_istft_vits.json ├── ljs_mb_istft_vits.json ├── ljs_ms_istft_vits.json └── ms_ms.json ├── data_utils.py ├── fig └── proposed_model.png ├── filelists ├── train.txt ├── train.txt.cleaned ├── val.txt └── val.txt.cleaned ├── inference.ipynb ├── inference_api.py ├── inference_ms.ipynb ├── losses.py ├── mel_processing.py ├── models.py ├── modules.py ├── monotonic_align ├── __init__.py ├── core.pyx └── setup.py ├── pqmf.py ├── preprocess.py ├── repack.ipynb ├── requirements.txt ├── stft.py ├── stft_loss.py ├── text ├── LICENSE ├── __init__.py ├── cleaners.py ├── japanese.py ├── mandarin.py └── symbols.py ├── train_latest.py ├── train_ms.py ├── transforms.py └── utils.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innnky/MB-iSTFT-VITS/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innnky/MB-iSTFT-VITS/HEAD/README.md -------------------------------------------------------------------------------- /attentions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innnky/MB-iSTFT-VITS/HEAD/attentions.py -------------------------------------------------------------------------------- /commons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innnky/MB-iSTFT-VITS/HEAD/commons.py -------------------------------------------------------------------------------- /configs/ljs_istft_vits.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innnky/MB-iSTFT-VITS/HEAD/configs/ljs_istft_vits.json -------------------------------------------------------------------------------- /configs/ljs_mb_istft_vits.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innnky/MB-iSTFT-VITS/HEAD/configs/ljs_mb_istft_vits.json -------------------------------------------------------------------------------- /configs/ljs_ms_istft_vits.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innnky/MB-iSTFT-VITS/HEAD/configs/ljs_ms_istft_vits.json -------------------------------------------------------------------------------- /configs/ms_ms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innnky/MB-iSTFT-VITS/HEAD/configs/ms_ms.json -------------------------------------------------------------------------------- /data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innnky/MB-iSTFT-VITS/HEAD/data_utils.py -------------------------------------------------------------------------------- /fig/proposed_model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innnky/MB-iSTFT-VITS/HEAD/fig/proposed_model.png -------------------------------------------------------------------------------- /filelists/train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innnky/MB-iSTFT-VITS/HEAD/filelists/train.txt -------------------------------------------------------------------------------- /filelists/train.txt.cleaned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innnky/MB-iSTFT-VITS/HEAD/filelists/train.txt.cleaned -------------------------------------------------------------------------------- /filelists/val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innnky/MB-iSTFT-VITS/HEAD/filelists/val.txt -------------------------------------------------------------------------------- /filelists/val.txt.cleaned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innnky/MB-iSTFT-VITS/HEAD/filelists/val.txt.cleaned -------------------------------------------------------------------------------- /inference.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innnky/MB-iSTFT-VITS/HEAD/inference.ipynb -------------------------------------------------------------------------------- /inference_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innnky/MB-iSTFT-VITS/HEAD/inference_api.py -------------------------------------------------------------------------------- /inference_ms.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innnky/MB-iSTFT-VITS/HEAD/inference_ms.ipynb -------------------------------------------------------------------------------- /losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innnky/MB-iSTFT-VITS/HEAD/losses.py -------------------------------------------------------------------------------- /mel_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innnky/MB-iSTFT-VITS/HEAD/mel_processing.py -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innnky/MB-iSTFT-VITS/HEAD/models.py -------------------------------------------------------------------------------- /modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innnky/MB-iSTFT-VITS/HEAD/modules.py -------------------------------------------------------------------------------- /monotonic_align/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innnky/MB-iSTFT-VITS/HEAD/monotonic_align/__init__.py -------------------------------------------------------------------------------- /monotonic_align/core.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innnky/MB-iSTFT-VITS/HEAD/monotonic_align/core.pyx -------------------------------------------------------------------------------- /monotonic_align/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innnky/MB-iSTFT-VITS/HEAD/monotonic_align/setup.py -------------------------------------------------------------------------------- /pqmf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innnky/MB-iSTFT-VITS/HEAD/pqmf.py -------------------------------------------------------------------------------- /preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innnky/MB-iSTFT-VITS/HEAD/preprocess.py -------------------------------------------------------------------------------- /repack.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innnky/MB-iSTFT-VITS/HEAD/repack.ipynb -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innnky/MB-iSTFT-VITS/HEAD/requirements.txt -------------------------------------------------------------------------------- /stft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innnky/MB-iSTFT-VITS/HEAD/stft.py -------------------------------------------------------------------------------- /stft_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innnky/MB-iSTFT-VITS/HEAD/stft_loss.py -------------------------------------------------------------------------------- /text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innnky/MB-iSTFT-VITS/HEAD/text/LICENSE -------------------------------------------------------------------------------- /text/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innnky/MB-iSTFT-VITS/HEAD/text/__init__.py -------------------------------------------------------------------------------- /text/cleaners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innnky/MB-iSTFT-VITS/HEAD/text/cleaners.py -------------------------------------------------------------------------------- /text/japanese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innnky/MB-iSTFT-VITS/HEAD/text/japanese.py -------------------------------------------------------------------------------- /text/mandarin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innnky/MB-iSTFT-VITS/HEAD/text/mandarin.py -------------------------------------------------------------------------------- /text/symbols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innnky/MB-iSTFT-VITS/HEAD/text/symbols.py -------------------------------------------------------------------------------- /train_latest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innnky/MB-iSTFT-VITS/HEAD/train_latest.py -------------------------------------------------------------------------------- /train_ms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innnky/MB-iSTFT-VITS/HEAD/train_ms.py -------------------------------------------------------------------------------- /transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innnky/MB-iSTFT-VITS/HEAD/transforms.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innnky/MB-iSTFT-VITS/HEAD/utils.py --------------------------------------------------------------------------------