├── .gitignore ├── README.md ├── conf ├── infer_transfer.yaml ├── ref_gst_codec_vits.yaml ├── ref_mixer_codec_vits.yaml └── ref_vits.yaml ├── infer.py ├── model ├── base.py ├── helper.py ├── splines.py ├── utils.py └── vits.py ├── module ├── monotonic_align.py ├── ref_gst.py ├── ref_mixer_codec_only.py ├── ref_vits_module.py ├── vits_losses.py └── vits_modules.py ├── preprocess └── make_manifest.py ├── requirements.txt ├── torchdata ├── data.py ├── data_total.py ├── data_type.py └── text_preprocess.py └── vits_train.py /.gitignore: -------------------------------------------------------------------------------- 1 | # User-specific stuff 2 | .idea -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakahaga/dc-comix-tts/HEAD/README.md -------------------------------------------------------------------------------- /conf/infer_transfer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakahaga/dc-comix-tts/HEAD/conf/infer_transfer.yaml -------------------------------------------------------------------------------- /conf/ref_gst_codec_vits.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakahaga/dc-comix-tts/HEAD/conf/ref_gst_codec_vits.yaml -------------------------------------------------------------------------------- /conf/ref_mixer_codec_vits.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakahaga/dc-comix-tts/HEAD/conf/ref_mixer_codec_vits.yaml -------------------------------------------------------------------------------- /conf/ref_vits.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakahaga/dc-comix-tts/HEAD/conf/ref_vits.yaml -------------------------------------------------------------------------------- /infer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakahaga/dc-comix-tts/HEAD/infer.py -------------------------------------------------------------------------------- /model/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakahaga/dc-comix-tts/HEAD/model/base.py -------------------------------------------------------------------------------- /model/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakahaga/dc-comix-tts/HEAD/model/helper.py -------------------------------------------------------------------------------- /model/splines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakahaga/dc-comix-tts/HEAD/model/splines.py -------------------------------------------------------------------------------- /model/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakahaga/dc-comix-tts/HEAD/model/utils.py -------------------------------------------------------------------------------- /model/vits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakahaga/dc-comix-tts/HEAD/model/vits.py -------------------------------------------------------------------------------- /module/monotonic_align.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakahaga/dc-comix-tts/HEAD/module/monotonic_align.py -------------------------------------------------------------------------------- /module/ref_gst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakahaga/dc-comix-tts/HEAD/module/ref_gst.py -------------------------------------------------------------------------------- /module/ref_mixer_codec_only.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakahaga/dc-comix-tts/HEAD/module/ref_mixer_codec_only.py -------------------------------------------------------------------------------- /module/ref_vits_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakahaga/dc-comix-tts/HEAD/module/ref_vits_module.py -------------------------------------------------------------------------------- /module/vits_losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakahaga/dc-comix-tts/HEAD/module/vits_losses.py -------------------------------------------------------------------------------- /module/vits_modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakahaga/dc-comix-tts/HEAD/module/vits_modules.py -------------------------------------------------------------------------------- /preprocess/make_manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakahaga/dc-comix-tts/HEAD/preprocess/make_manifest.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakahaga/dc-comix-tts/HEAD/requirements.txt -------------------------------------------------------------------------------- /torchdata/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakahaga/dc-comix-tts/HEAD/torchdata/data.py -------------------------------------------------------------------------------- /torchdata/data_total.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakahaga/dc-comix-tts/HEAD/torchdata/data_total.py -------------------------------------------------------------------------------- /torchdata/data_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakahaga/dc-comix-tts/HEAD/torchdata/data_type.py -------------------------------------------------------------------------------- /torchdata/text_preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakahaga/dc-comix-tts/HEAD/torchdata/text_preprocess.py -------------------------------------------------------------------------------- /vits_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakahaga/dc-comix-tts/HEAD/vits_train.py --------------------------------------------------------------------------------