├── .github └── workflows │ └── publish.yml ├── .gitignore ├── README.md ├── __init__.py ├── cosyvoice ├── __init__.py ├── bin │ ├── __init__.py │ ├── average_model.py │ ├── export_jit.py │ ├── export_onnx.py │ ├── export_trt.sh │ ├── inference.py │ └── train.py ├── cli │ ├── __init__.py │ ├── cosyvoice.py │ ├── frontend.py │ └── model.py ├── dataset │ ├── __init__.py │ ├── dataset.py │ └── processor.py ├── flow │ ├── __init__.py │ ├── decoder.py │ ├── flow.py │ ├── flow_matching.py │ └── length_regulator.py ├── hifigan │ ├── __init__.py │ ├── discriminator.py │ ├── f0_predictor.py │ ├── generator.py │ └── hifigan.py ├── llm │ ├── __init__.py │ └── llm.py ├── tokenizer │ ├── __init__.py │ ├── assets │ │ └── multilingual_zh_ja_yue_char_del.tiktoken │ └── tokenizer.py ├── transformer │ ├── __init__.py │ ├── activation.py │ ├── attention.py │ ├── convolution.py │ ├── decoder.py │ ├── decoder_layer.py │ ├── embedding.py │ ├── encoder.py │ ├── encoder_layer.py │ ├── label_smoothing_loss.py │ ├── positionwise_feed_forward.py │ ├── subsampling.py │ └── upsample_encoder.py └── utils │ ├── __init__.py │ ├── class_utils.py │ ├── common.py │ ├── executor.py │ ├── file_utils.py │ ├── frontend_utils.py │ ├── losses.py │ ├── mask.py │ ├── scheduler.py │ └── train_utils.py ├── downloadmodel.py ├── examples ├── CrossLingual.json ├── Instruct2.json └── ZeroShot.json ├── pyproject.toml ├── requirements.txt └── third_party ├── Matcha-TTS ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── __init__.py ├── configs │ ├── __init__.py │ ├── callbacks │ │ ├── default.yaml │ │ ├── model_checkpoint.yaml │ │ ├── model_summary.yaml │ │ ├── none.yaml │ │ └── rich_progress_bar.yaml │ ├── data │ │ ├── hi-fi_en-US_female.yaml │ │ ├── ljspeech.yaml │ │ └── vctk.yaml │ ├── debug │ │ ├── default.yaml │ │ ├── fdr.yaml │ │ ├── limit.yaml │ │ ├── overfit.yaml │ │ └── profiler.yaml │ ├── eval.yaml │ ├── experiment │ │ ├── hifi_dataset_piper_phonemizer.yaml │ │ ├── ljspeech.yaml │ │ ├── ljspeech_min_memory.yaml │ │ └── multispeaker.yaml │ ├── extras │ │ └── default.yaml │ ├── hparams_search │ │ └── mnist_optuna.yaml │ ├── hydra │ │ └── default.yaml │ ├── local │ │ └── .gitkeep │ ├── logger │ │ ├── aim.yaml │ │ ├── comet.yaml │ │ ├── csv.yaml │ │ ├── many_loggers.yaml │ │ ├── mlflow.yaml │ │ ├── neptune.yaml │ │ ├── tensorboard.yaml │ │ └── wandb.yaml │ ├── model │ │ ├── cfm │ │ │ └── default.yaml │ │ ├── decoder │ │ │ └── default.yaml │ │ ├── encoder │ │ │ └── default.yaml │ │ ├── matcha.yaml │ │ └── optimizer │ │ │ └── adam.yaml │ ├── paths │ │ └── default.yaml │ ├── train.yaml │ └── trainer │ │ ├── cpu.yaml │ │ ├── ddp.yaml │ │ ├── ddp_sim.yaml │ │ ├── default.yaml │ │ ├── gpu.yaml │ │ └── mps.yaml ├── data ├── matcha │ ├── VERSION │ ├── __init__.py │ ├── app.py │ ├── cli.py │ ├── data │ │ ├── __init__.py │ │ ├── components │ │ │ └── __init__.py │ │ └── text_mel_datamodule.py │ ├── hifigan │ │ ├── LICENSE │ │ ├── README.md │ │ ├── __init__.py │ │ ├── config.py │ │ ├── denoiser.py │ │ ├── env.py │ │ ├── meldataset.py │ │ ├── models.py │ │ └── xutils.py │ ├── models │ │ ├── __init__.py │ │ ├── baselightningmodule.py │ │ ├── components │ │ │ ├── __init__.py │ │ │ ├── decoder.py │ │ │ ├── flow_matching.py │ │ │ ├── text_encoder.py │ │ │ └── transformer.py │ │ └── matcha_tts.py │ ├── onnx │ │ ├── __init__.py │ │ ├── export.py │ │ └── infer.py │ ├── text │ │ ├── __init__.py │ │ ├── cleaners.py │ │ ├── numbers.py │ │ └── symbols.py │ ├── train.py │ └── utils │ │ ├── __init__.py │ │ ├── audio.py │ │ ├── generate_data_statistics.py │ │ ├── instantiators.py │ │ ├── logging_utils.py │ │ ├── model.py │ │ ├── monotonic_align │ │ ├── __init__.py │ │ ├── core.pyx │ │ └── setup.py │ │ ├── pylogger.py │ │ ├── rich_utils.py │ │ └── utils.py ├── notebooks │ └── .gitkeep ├── pyproject.toml ├── requirements.txt ├── scripts │ └── schedule.sh ├── setup.py └── synthesis.ipynb └── __init__.py /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/__init__.py -------------------------------------------------------------------------------- /cosyvoice/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosyvoice/bin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosyvoice/bin/average_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/cosyvoice/bin/average_model.py -------------------------------------------------------------------------------- /cosyvoice/bin/export_jit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/cosyvoice/bin/export_jit.py -------------------------------------------------------------------------------- /cosyvoice/bin/export_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/cosyvoice/bin/export_onnx.py -------------------------------------------------------------------------------- /cosyvoice/bin/export_trt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/cosyvoice/bin/export_trt.sh -------------------------------------------------------------------------------- /cosyvoice/bin/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/cosyvoice/bin/inference.py -------------------------------------------------------------------------------- /cosyvoice/bin/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/cosyvoice/bin/train.py -------------------------------------------------------------------------------- /cosyvoice/cli/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosyvoice/cli/cosyvoice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/cosyvoice/cli/cosyvoice.py -------------------------------------------------------------------------------- /cosyvoice/cli/frontend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/cosyvoice/cli/frontend.py -------------------------------------------------------------------------------- /cosyvoice/cli/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/cosyvoice/cli/model.py -------------------------------------------------------------------------------- /cosyvoice/dataset/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosyvoice/dataset/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/cosyvoice/dataset/dataset.py -------------------------------------------------------------------------------- /cosyvoice/dataset/processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/cosyvoice/dataset/processor.py -------------------------------------------------------------------------------- /cosyvoice/flow/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosyvoice/flow/decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/cosyvoice/flow/decoder.py -------------------------------------------------------------------------------- /cosyvoice/flow/flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/cosyvoice/flow/flow.py -------------------------------------------------------------------------------- /cosyvoice/flow/flow_matching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/cosyvoice/flow/flow_matching.py -------------------------------------------------------------------------------- /cosyvoice/flow/length_regulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/cosyvoice/flow/length_regulator.py -------------------------------------------------------------------------------- /cosyvoice/hifigan/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosyvoice/hifigan/discriminator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/cosyvoice/hifigan/discriminator.py -------------------------------------------------------------------------------- /cosyvoice/hifigan/f0_predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/cosyvoice/hifigan/f0_predictor.py -------------------------------------------------------------------------------- /cosyvoice/hifigan/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/cosyvoice/hifigan/generator.py -------------------------------------------------------------------------------- /cosyvoice/hifigan/hifigan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/cosyvoice/hifigan/hifigan.py -------------------------------------------------------------------------------- /cosyvoice/llm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosyvoice/llm/llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/cosyvoice/llm/llm.py -------------------------------------------------------------------------------- /cosyvoice/tokenizer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosyvoice/tokenizer/assets/multilingual_zh_ja_yue_char_del.tiktoken: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/cosyvoice/tokenizer/assets/multilingual_zh_ja_yue_char_del.tiktoken -------------------------------------------------------------------------------- /cosyvoice/tokenizer/tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/cosyvoice/tokenizer/tokenizer.py -------------------------------------------------------------------------------- /cosyvoice/transformer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosyvoice/transformer/activation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/cosyvoice/transformer/activation.py -------------------------------------------------------------------------------- /cosyvoice/transformer/attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/cosyvoice/transformer/attention.py -------------------------------------------------------------------------------- /cosyvoice/transformer/convolution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/cosyvoice/transformer/convolution.py -------------------------------------------------------------------------------- /cosyvoice/transformer/decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/cosyvoice/transformer/decoder.py -------------------------------------------------------------------------------- /cosyvoice/transformer/decoder_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/cosyvoice/transformer/decoder_layer.py -------------------------------------------------------------------------------- /cosyvoice/transformer/embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/cosyvoice/transformer/embedding.py -------------------------------------------------------------------------------- /cosyvoice/transformer/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/cosyvoice/transformer/encoder.py -------------------------------------------------------------------------------- /cosyvoice/transformer/encoder_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/cosyvoice/transformer/encoder_layer.py -------------------------------------------------------------------------------- /cosyvoice/transformer/label_smoothing_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/cosyvoice/transformer/label_smoothing_loss.py -------------------------------------------------------------------------------- /cosyvoice/transformer/positionwise_feed_forward.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/cosyvoice/transformer/positionwise_feed_forward.py -------------------------------------------------------------------------------- /cosyvoice/transformer/subsampling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/cosyvoice/transformer/subsampling.py -------------------------------------------------------------------------------- /cosyvoice/transformer/upsample_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/cosyvoice/transformer/upsample_encoder.py -------------------------------------------------------------------------------- /cosyvoice/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosyvoice/utils/class_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/cosyvoice/utils/class_utils.py -------------------------------------------------------------------------------- /cosyvoice/utils/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/cosyvoice/utils/common.py -------------------------------------------------------------------------------- /cosyvoice/utils/executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/cosyvoice/utils/executor.py -------------------------------------------------------------------------------- /cosyvoice/utils/file_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/cosyvoice/utils/file_utils.py -------------------------------------------------------------------------------- /cosyvoice/utils/frontend_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/cosyvoice/utils/frontend_utils.py -------------------------------------------------------------------------------- /cosyvoice/utils/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/cosyvoice/utils/losses.py -------------------------------------------------------------------------------- /cosyvoice/utils/mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/cosyvoice/utils/mask.py -------------------------------------------------------------------------------- /cosyvoice/utils/scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/cosyvoice/utils/scheduler.py -------------------------------------------------------------------------------- /cosyvoice/utils/train_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/cosyvoice/utils/train_utils.py -------------------------------------------------------------------------------- /downloadmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/downloadmodel.py -------------------------------------------------------------------------------- /examples/CrossLingual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/examples/CrossLingual.json -------------------------------------------------------------------------------- /examples/Instruct2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/examples/Instruct2.json -------------------------------------------------------------------------------- /examples/ZeroShot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/examples/ZeroShot.json -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/requirements.txt -------------------------------------------------------------------------------- /third_party/Matcha-TTS/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/LICENSE -------------------------------------------------------------------------------- /third_party/Matcha-TTS/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/MANIFEST.in -------------------------------------------------------------------------------- /third_party/Matcha-TTS/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/Makefile -------------------------------------------------------------------------------- /third_party/Matcha-TTS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/README.md -------------------------------------------------------------------------------- /third_party/Matcha-TTS/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/Matcha-TTS/configs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/configs/__init__.py -------------------------------------------------------------------------------- /third_party/Matcha-TTS/configs/callbacks/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/configs/callbacks/default.yaml -------------------------------------------------------------------------------- /third_party/Matcha-TTS/configs/callbacks/model_checkpoint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/configs/callbacks/model_checkpoint.yaml -------------------------------------------------------------------------------- /third_party/Matcha-TTS/configs/callbacks/model_summary.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/configs/callbacks/model_summary.yaml -------------------------------------------------------------------------------- /third_party/Matcha-TTS/configs/callbacks/none.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/Matcha-TTS/configs/callbacks/rich_progress_bar.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/configs/callbacks/rich_progress_bar.yaml -------------------------------------------------------------------------------- /third_party/Matcha-TTS/configs/data/hi-fi_en-US_female.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/configs/data/hi-fi_en-US_female.yaml -------------------------------------------------------------------------------- /third_party/Matcha-TTS/configs/data/ljspeech.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/configs/data/ljspeech.yaml -------------------------------------------------------------------------------- /third_party/Matcha-TTS/configs/data/vctk.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/configs/data/vctk.yaml -------------------------------------------------------------------------------- /third_party/Matcha-TTS/configs/debug/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/configs/debug/default.yaml -------------------------------------------------------------------------------- /third_party/Matcha-TTS/configs/debug/fdr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/configs/debug/fdr.yaml -------------------------------------------------------------------------------- /third_party/Matcha-TTS/configs/debug/limit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/configs/debug/limit.yaml -------------------------------------------------------------------------------- /third_party/Matcha-TTS/configs/debug/overfit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/configs/debug/overfit.yaml -------------------------------------------------------------------------------- /third_party/Matcha-TTS/configs/debug/profiler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/configs/debug/profiler.yaml -------------------------------------------------------------------------------- /third_party/Matcha-TTS/configs/eval.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/configs/eval.yaml -------------------------------------------------------------------------------- /third_party/Matcha-TTS/configs/experiment/hifi_dataset_piper_phonemizer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/configs/experiment/hifi_dataset_piper_phonemizer.yaml -------------------------------------------------------------------------------- /third_party/Matcha-TTS/configs/experiment/ljspeech.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/configs/experiment/ljspeech.yaml -------------------------------------------------------------------------------- /third_party/Matcha-TTS/configs/experiment/ljspeech_min_memory.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/configs/experiment/ljspeech_min_memory.yaml -------------------------------------------------------------------------------- /third_party/Matcha-TTS/configs/experiment/multispeaker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/configs/experiment/multispeaker.yaml -------------------------------------------------------------------------------- /third_party/Matcha-TTS/configs/extras/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/configs/extras/default.yaml -------------------------------------------------------------------------------- /third_party/Matcha-TTS/configs/hparams_search/mnist_optuna.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/configs/hparams_search/mnist_optuna.yaml -------------------------------------------------------------------------------- /third_party/Matcha-TTS/configs/hydra/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/configs/hydra/default.yaml -------------------------------------------------------------------------------- /third_party/Matcha-TTS/configs/local/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/Matcha-TTS/configs/logger/aim.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/configs/logger/aim.yaml -------------------------------------------------------------------------------- /third_party/Matcha-TTS/configs/logger/comet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/configs/logger/comet.yaml -------------------------------------------------------------------------------- /third_party/Matcha-TTS/configs/logger/csv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/configs/logger/csv.yaml -------------------------------------------------------------------------------- /third_party/Matcha-TTS/configs/logger/many_loggers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/configs/logger/many_loggers.yaml -------------------------------------------------------------------------------- /third_party/Matcha-TTS/configs/logger/mlflow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/configs/logger/mlflow.yaml -------------------------------------------------------------------------------- /third_party/Matcha-TTS/configs/logger/neptune.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/configs/logger/neptune.yaml -------------------------------------------------------------------------------- /third_party/Matcha-TTS/configs/logger/tensorboard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/configs/logger/tensorboard.yaml -------------------------------------------------------------------------------- /third_party/Matcha-TTS/configs/logger/wandb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/configs/logger/wandb.yaml -------------------------------------------------------------------------------- /third_party/Matcha-TTS/configs/model/cfm/default.yaml: -------------------------------------------------------------------------------- 1 | name: CFM 2 | solver: euler 3 | sigma_min: 1e-4 4 | -------------------------------------------------------------------------------- /third_party/Matcha-TTS/configs/model/decoder/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/configs/model/decoder/default.yaml -------------------------------------------------------------------------------- /third_party/Matcha-TTS/configs/model/encoder/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/configs/model/encoder/default.yaml -------------------------------------------------------------------------------- /third_party/Matcha-TTS/configs/model/matcha.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/configs/model/matcha.yaml -------------------------------------------------------------------------------- /third_party/Matcha-TTS/configs/model/optimizer/adam.yaml: -------------------------------------------------------------------------------- 1 | _target_: torch.optim.Adam 2 | _partial_: true 3 | lr: 1e-4 4 | weight_decay: 0.0 5 | -------------------------------------------------------------------------------- /third_party/Matcha-TTS/configs/paths/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/configs/paths/default.yaml -------------------------------------------------------------------------------- /third_party/Matcha-TTS/configs/train.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/configs/train.yaml -------------------------------------------------------------------------------- /third_party/Matcha-TTS/configs/trainer/cpu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/configs/trainer/cpu.yaml -------------------------------------------------------------------------------- /third_party/Matcha-TTS/configs/trainer/ddp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/configs/trainer/ddp.yaml -------------------------------------------------------------------------------- /third_party/Matcha-TTS/configs/trainer/ddp_sim.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/configs/trainer/ddp_sim.yaml -------------------------------------------------------------------------------- /third_party/Matcha-TTS/configs/trainer/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/configs/trainer/default.yaml -------------------------------------------------------------------------------- /third_party/Matcha-TTS/configs/trainer/gpu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/configs/trainer/gpu.yaml -------------------------------------------------------------------------------- /third_party/Matcha-TTS/configs/trainer/mps.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/configs/trainer/mps.yaml -------------------------------------------------------------------------------- /third_party/Matcha-TTS/data: -------------------------------------------------------------------------------- 1 | /home/smehta/Projects/Speech-Backbones/Grad-TTS/data -------------------------------------------------------------------------------- /third_party/Matcha-TTS/matcha/VERSION: -------------------------------------------------------------------------------- 1 | 0.0.5.1 2 | -------------------------------------------------------------------------------- /third_party/Matcha-TTS/matcha/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/Matcha-TTS/matcha/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/matcha/app.py -------------------------------------------------------------------------------- /third_party/Matcha-TTS/matcha/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/matcha/cli.py -------------------------------------------------------------------------------- /third_party/Matcha-TTS/matcha/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/Matcha-TTS/matcha/data/components/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/Matcha-TTS/matcha/data/text_mel_datamodule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/matcha/data/text_mel_datamodule.py -------------------------------------------------------------------------------- /third_party/Matcha-TTS/matcha/hifigan/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/matcha/hifigan/LICENSE -------------------------------------------------------------------------------- /third_party/Matcha-TTS/matcha/hifigan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/matcha/hifigan/README.md -------------------------------------------------------------------------------- /third_party/Matcha-TTS/matcha/hifigan/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/Matcha-TTS/matcha/hifigan/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/matcha/hifigan/config.py -------------------------------------------------------------------------------- /third_party/Matcha-TTS/matcha/hifigan/denoiser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/matcha/hifigan/denoiser.py -------------------------------------------------------------------------------- /third_party/Matcha-TTS/matcha/hifigan/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/matcha/hifigan/env.py -------------------------------------------------------------------------------- /third_party/Matcha-TTS/matcha/hifigan/meldataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/matcha/hifigan/meldataset.py -------------------------------------------------------------------------------- /third_party/Matcha-TTS/matcha/hifigan/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/matcha/hifigan/models.py -------------------------------------------------------------------------------- /third_party/Matcha-TTS/matcha/hifigan/xutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/matcha/hifigan/xutils.py -------------------------------------------------------------------------------- /third_party/Matcha-TTS/matcha/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/Matcha-TTS/matcha/models/baselightningmodule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/matcha/models/baselightningmodule.py -------------------------------------------------------------------------------- /third_party/Matcha-TTS/matcha/models/components/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/Matcha-TTS/matcha/models/components/decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/matcha/models/components/decoder.py -------------------------------------------------------------------------------- /third_party/Matcha-TTS/matcha/models/components/flow_matching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/matcha/models/components/flow_matching.py -------------------------------------------------------------------------------- /third_party/Matcha-TTS/matcha/models/components/text_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/matcha/models/components/text_encoder.py -------------------------------------------------------------------------------- /third_party/Matcha-TTS/matcha/models/components/transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/matcha/models/components/transformer.py -------------------------------------------------------------------------------- /third_party/Matcha-TTS/matcha/models/matcha_tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/matcha/models/matcha_tts.py -------------------------------------------------------------------------------- /third_party/Matcha-TTS/matcha/onnx/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/Matcha-TTS/matcha/onnx/export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/matcha/onnx/export.py -------------------------------------------------------------------------------- /third_party/Matcha-TTS/matcha/onnx/infer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/matcha/onnx/infer.py -------------------------------------------------------------------------------- /third_party/Matcha-TTS/matcha/text/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/matcha/text/__init__.py -------------------------------------------------------------------------------- /third_party/Matcha-TTS/matcha/text/cleaners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/matcha/text/cleaners.py -------------------------------------------------------------------------------- /third_party/Matcha-TTS/matcha/text/numbers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/matcha/text/numbers.py -------------------------------------------------------------------------------- /third_party/Matcha-TTS/matcha/text/symbols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/matcha/text/symbols.py -------------------------------------------------------------------------------- /third_party/Matcha-TTS/matcha/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/matcha/train.py -------------------------------------------------------------------------------- /third_party/Matcha-TTS/matcha/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/matcha/utils/__init__.py -------------------------------------------------------------------------------- /third_party/Matcha-TTS/matcha/utils/audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/matcha/utils/audio.py -------------------------------------------------------------------------------- /third_party/Matcha-TTS/matcha/utils/generate_data_statistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/matcha/utils/generate_data_statistics.py -------------------------------------------------------------------------------- /third_party/Matcha-TTS/matcha/utils/instantiators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/matcha/utils/instantiators.py -------------------------------------------------------------------------------- /third_party/Matcha-TTS/matcha/utils/logging_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/matcha/utils/logging_utils.py -------------------------------------------------------------------------------- /third_party/Matcha-TTS/matcha/utils/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/matcha/utils/model.py -------------------------------------------------------------------------------- /third_party/Matcha-TTS/matcha/utils/monotonic_align/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/matcha/utils/monotonic_align/__init__.py -------------------------------------------------------------------------------- /third_party/Matcha-TTS/matcha/utils/monotonic_align/core.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/matcha/utils/monotonic_align/core.pyx -------------------------------------------------------------------------------- /third_party/Matcha-TTS/matcha/utils/monotonic_align/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/matcha/utils/monotonic_align/setup.py -------------------------------------------------------------------------------- /third_party/Matcha-TTS/matcha/utils/pylogger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/matcha/utils/pylogger.py -------------------------------------------------------------------------------- /third_party/Matcha-TTS/matcha/utils/rich_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/matcha/utils/rich_utils.py -------------------------------------------------------------------------------- /third_party/Matcha-TTS/matcha/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/matcha/utils/utils.py -------------------------------------------------------------------------------- /third_party/Matcha-TTS/notebooks/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/Matcha-TTS/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/pyproject.toml -------------------------------------------------------------------------------- /third_party/Matcha-TTS/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/requirements.txt -------------------------------------------------------------------------------- /third_party/Matcha-TTS/scripts/schedule.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/scripts/schedule.sh -------------------------------------------------------------------------------- /third_party/Matcha-TTS/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/setup.py -------------------------------------------------------------------------------- /third_party/Matcha-TTS/synthesis.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muxueChen/ComfyUI_NTCosyVoice/HEAD/third_party/Matcha-TTS/synthesis.ipynb -------------------------------------------------------------------------------- /third_party/__init__.py: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------