├── .gitignore ├── LICENSE ├── README.md ├── attentions.py ├── commons.py ├── configs └── vits2_ljs_ring.json ├── conformer ├── __init__.py └── conformer.py ├── data_utils.py ├── filelists ├── ljs_audio_text_test_filelist.txt ├── ljs_audio_text_test_filelist.txt.cleaned ├── ljs_audio_text_train_filelist.txt ├── ljs_audio_text_train_filelist.txt.cleaned ├── ljs_audio_text_val_filelist.txt └── ljs_audio_text_val_filelist.txt.cleaned ├── generator_blocks ├── __init__.py ├── gan_utils.py └── norm2d.py ├── img └── model_architecture.png ├── inference.ipynb ├── inference.py ├── losses.py ├── models.py ├── modules.py ├── monotonic_align ├── __init__.py ├── core.pyx └── setup.py ├── preprocess ├── mel_processing.py ├── preprocess.py └── preprocess_audio.py ├── requirements.txt ├── stft.py ├── text ├── LICENSE ├── __init__.py ├── cleaners.py └── symbols.py ├── train.py ├── transforms.py ├── utils.py └── webui.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seongho608/RingFormer/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seongho608/RingFormer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seongho608/RingFormer/HEAD/README.md -------------------------------------------------------------------------------- /attentions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seongho608/RingFormer/HEAD/attentions.py -------------------------------------------------------------------------------- /commons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seongho608/RingFormer/HEAD/commons.py -------------------------------------------------------------------------------- /configs/vits2_ljs_ring.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seongho608/RingFormer/HEAD/configs/vits2_ljs_ring.json -------------------------------------------------------------------------------- /conformer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seongho608/RingFormer/HEAD/conformer/__init__.py -------------------------------------------------------------------------------- /conformer/conformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seongho608/RingFormer/HEAD/conformer/conformer.py -------------------------------------------------------------------------------- /data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seongho608/RingFormer/HEAD/data_utils.py -------------------------------------------------------------------------------- /filelists/ljs_audio_text_test_filelist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seongho608/RingFormer/HEAD/filelists/ljs_audio_text_test_filelist.txt -------------------------------------------------------------------------------- /filelists/ljs_audio_text_test_filelist.txt.cleaned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seongho608/RingFormer/HEAD/filelists/ljs_audio_text_test_filelist.txt.cleaned -------------------------------------------------------------------------------- /filelists/ljs_audio_text_train_filelist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seongho608/RingFormer/HEAD/filelists/ljs_audio_text_train_filelist.txt -------------------------------------------------------------------------------- /filelists/ljs_audio_text_train_filelist.txt.cleaned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seongho608/RingFormer/HEAD/filelists/ljs_audio_text_train_filelist.txt.cleaned -------------------------------------------------------------------------------- /filelists/ljs_audio_text_val_filelist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seongho608/RingFormer/HEAD/filelists/ljs_audio_text_val_filelist.txt -------------------------------------------------------------------------------- /filelists/ljs_audio_text_val_filelist.txt.cleaned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seongho608/RingFormer/HEAD/filelists/ljs_audio_text_val_filelist.txt.cleaned -------------------------------------------------------------------------------- /generator_blocks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seongho608/RingFormer/HEAD/generator_blocks/__init__.py -------------------------------------------------------------------------------- /generator_blocks/gan_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seongho608/RingFormer/HEAD/generator_blocks/gan_utils.py -------------------------------------------------------------------------------- /generator_blocks/norm2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seongho608/RingFormer/HEAD/generator_blocks/norm2d.py -------------------------------------------------------------------------------- /img/model_architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seongho608/RingFormer/HEAD/img/model_architecture.png -------------------------------------------------------------------------------- /inference.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seongho608/RingFormer/HEAD/inference.ipynb -------------------------------------------------------------------------------- /inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seongho608/RingFormer/HEAD/inference.py -------------------------------------------------------------------------------- /losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seongho608/RingFormer/HEAD/losses.py -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seongho608/RingFormer/HEAD/models.py -------------------------------------------------------------------------------- /modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seongho608/RingFormer/HEAD/modules.py -------------------------------------------------------------------------------- /monotonic_align/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seongho608/RingFormer/HEAD/monotonic_align/__init__.py -------------------------------------------------------------------------------- /monotonic_align/core.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seongho608/RingFormer/HEAD/monotonic_align/core.pyx -------------------------------------------------------------------------------- /monotonic_align/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seongho608/RingFormer/HEAD/monotonic_align/setup.py -------------------------------------------------------------------------------- /preprocess/mel_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seongho608/RingFormer/HEAD/preprocess/mel_processing.py -------------------------------------------------------------------------------- /preprocess/preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seongho608/RingFormer/HEAD/preprocess/preprocess.py -------------------------------------------------------------------------------- /preprocess/preprocess_audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seongho608/RingFormer/HEAD/preprocess/preprocess_audio.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seongho608/RingFormer/HEAD/requirements.txt -------------------------------------------------------------------------------- /stft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seongho608/RingFormer/HEAD/stft.py -------------------------------------------------------------------------------- /text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seongho608/RingFormer/HEAD/text/LICENSE -------------------------------------------------------------------------------- /text/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seongho608/RingFormer/HEAD/text/__init__.py -------------------------------------------------------------------------------- /text/cleaners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seongho608/RingFormer/HEAD/text/cleaners.py -------------------------------------------------------------------------------- /text/symbols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seongho608/RingFormer/HEAD/text/symbols.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seongho608/RingFormer/HEAD/train.py -------------------------------------------------------------------------------- /transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seongho608/RingFormer/HEAD/transforms.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seongho608/RingFormer/HEAD/utils.py -------------------------------------------------------------------------------- /webui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seongho608/RingFormer/HEAD/webui.py --------------------------------------------------------------------------------