├── .gitignore ├── LICENSE ├── data_gen └── tts │ ├── base_binarizer.py │ ├── base_preprocess.py │ ├── bin │ ├── binarize.py │ ├── pre_align.py │ └── train_mfa_align.py │ ├── data_gen_utils.py │ ├── txt_processors │ ├── __init__.py │ ├── base_text_processor.py │ └── en.py │ └── wav_processors │ ├── __init__.py │ ├── base_processor.py │ └── common_processors.py ├── egs ├── datasets │ └── audio │ │ ├── libritts │ │ ├── base_text2mel.yaml │ │ ├── fs2.yaml │ │ ├── pre_align.py │ │ └── pwg.yaml │ │ ├── lj │ │ ├── base_mel2wav.yaml │ │ ├── pre_align.py │ │ └── pwg.yaml │ │ └── vctk │ │ ├── base_mel2wav.yaml │ │ ├── fs2.yaml │ │ ├── pre_align.py │ │ └── pwg.yaml └── egs_bases │ ├── config_base.yaml │ └── tts │ ├── base.yaml │ ├── fs2.yaml │ └── vocoder │ ├── base.yaml │ └── pwg.yaml ├── inference ├── ProDiff.py ├── ProDiff_Teacher.py ├── base_tts_infer.py └── gradio │ ├── gradio_settings.yaml │ └── infer.py ├── modules ├── FastDiff │ ├── config │ │ ├── FastDiff.yaml │ │ ├── FastDiff_libritts.yaml │ │ ├── FastDiff_sc09.yaml │ │ ├── FastDiff_tacotron.yaml │ │ ├── FastDiff_vctk.yaml │ │ └── base.yaml │ ├── module │ │ ├── FastDiff_model.py │ │ ├── WaveNet.py │ │ ├── modules.py │ │ └── util.py │ └── task │ │ └── FastDiff.py ├── ProDiff │ ├── config │ │ ├── base.yaml │ │ ├── prodiff.yaml │ │ └── prodiff_teacher.yaml │ ├── model │ │ ├── ProDiff.py │ │ └── ProDiff_teacher.py │ └── task │ │ ├── ProDiff_task.py │ │ └── ProDiff_teacher_task.py ├── __init__.py ├── commons │ ├── common_layers.py │ ├── espnet_positional_embedding.py │ └── ssim.py ├── fastspeech │ ├── fs2.py │ ├── pe.py │ └── tts_modules.py ├── hifigan │ ├── hifigan.py │ └── mel_utils.py └── parallel_wavegan │ ├── __init__.py │ ├── layers │ ├── __init__.py │ ├── causal_conv.py │ ├── pqmf.py │ ├── residual_block.py │ ├── residual_stack.py │ ├── tf_layers.py │ └── upsample.py │ ├── losses │ ├── __init__.py │ └── stft_loss.py │ ├── models │ ├── __init__.py │ ├── melgan.py │ ├── parallel_wavegan.py │ └── source.py │ ├── optimizers │ ├── __init__.py │ └── radam.py │ ├── stft_loss.py │ └── utils │ ├── __init__.py │ └── utils.py ├── readme.md ├── requirements.txt ├── tasks ├── base_task.py ├── run.py ├── tts │ ├── dataset_utils.py │ ├── fs2.py │ ├── fs2_utils.py │ ├── pe.py │ ├── tts.py │ ├── tts_base.py │ └── tts_utils.py └── vocoder │ ├── dataset_utils.py │ └── vocoder_base.py ├── usr ├── .gitkeep ├── __init__.py ├── diff │ ├── diffusion.py │ ├── net.py │ └── shallow_diffusion_tts.py ├── diffspeech_task.py └── task.py ├── utils ├── __init__.py ├── audio.py ├── ckpt_utils.py ├── common_schedulers.py ├── cwt.py ├── ddp_utils.py ├── hparams.py ├── indexed_datasets.py ├── multiprocess_utils.py ├── os_utils.py ├── pitch_utils.py ├── pl_utils.py ├── plot.py ├── rnnoise.py ├── text_encoder.py ├── text_norm.py ├── trainer.py ├── training_utils.py └── tts_utils.py └── vocoders ├── __init__.py ├── base_vocoder.py ├── fastdiff.py ├── hifigan.py ├── pwg.py └── vocoder_utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/LICENSE -------------------------------------------------------------------------------- /data_gen/tts/base_binarizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/data_gen/tts/base_binarizer.py -------------------------------------------------------------------------------- /data_gen/tts/base_preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/data_gen/tts/base_preprocess.py -------------------------------------------------------------------------------- /data_gen/tts/bin/binarize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/data_gen/tts/bin/binarize.py -------------------------------------------------------------------------------- /data_gen/tts/bin/pre_align.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/data_gen/tts/bin/pre_align.py -------------------------------------------------------------------------------- /data_gen/tts/bin/train_mfa_align.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/data_gen/tts/bin/train_mfa_align.py -------------------------------------------------------------------------------- /data_gen/tts/data_gen_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/data_gen/tts/data_gen_utils.py -------------------------------------------------------------------------------- /data_gen/tts/txt_processors/__init__.py: -------------------------------------------------------------------------------- 1 | from . import en -------------------------------------------------------------------------------- /data_gen/tts/txt_processors/base_text_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/data_gen/tts/txt_processors/base_text_processor.py -------------------------------------------------------------------------------- /data_gen/tts/txt_processors/en.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/data_gen/tts/txt_processors/en.py -------------------------------------------------------------------------------- /data_gen/tts/wav_processors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/data_gen/tts/wav_processors/__init__.py -------------------------------------------------------------------------------- /data_gen/tts/wav_processors/base_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/data_gen/tts/wav_processors/base_processor.py -------------------------------------------------------------------------------- /data_gen/tts/wav_processors/common_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/data_gen/tts/wav_processors/common_processors.py -------------------------------------------------------------------------------- /egs/datasets/audio/libritts/base_text2mel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/egs/datasets/audio/libritts/base_text2mel.yaml -------------------------------------------------------------------------------- /egs/datasets/audio/libritts/fs2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/egs/datasets/audio/libritts/fs2.yaml -------------------------------------------------------------------------------- /egs/datasets/audio/libritts/pre_align.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/egs/datasets/audio/libritts/pre_align.py -------------------------------------------------------------------------------- /egs/datasets/audio/libritts/pwg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/egs/datasets/audio/libritts/pwg.yaml -------------------------------------------------------------------------------- /egs/datasets/audio/lj/base_mel2wav.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/egs/datasets/audio/lj/base_mel2wav.yaml -------------------------------------------------------------------------------- /egs/datasets/audio/lj/pre_align.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/egs/datasets/audio/lj/pre_align.py -------------------------------------------------------------------------------- /egs/datasets/audio/lj/pwg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/egs/datasets/audio/lj/pwg.yaml -------------------------------------------------------------------------------- /egs/datasets/audio/vctk/base_mel2wav.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/egs/datasets/audio/vctk/base_mel2wav.yaml -------------------------------------------------------------------------------- /egs/datasets/audio/vctk/fs2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/egs/datasets/audio/vctk/fs2.yaml -------------------------------------------------------------------------------- /egs/datasets/audio/vctk/pre_align.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/egs/datasets/audio/vctk/pre_align.py -------------------------------------------------------------------------------- /egs/datasets/audio/vctk/pwg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/egs/datasets/audio/vctk/pwg.yaml -------------------------------------------------------------------------------- /egs/egs_bases/config_base.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/egs/egs_bases/config_base.yaml -------------------------------------------------------------------------------- /egs/egs_bases/tts/base.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/egs/egs_bases/tts/base.yaml -------------------------------------------------------------------------------- /egs/egs_bases/tts/fs2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/egs/egs_bases/tts/fs2.yaml -------------------------------------------------------------------------------- /egs/egs_bases/tts/vocoder/base.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/egs/egs_bases/tts/vocoder/base.yaml -------------------------------------------------------------------------------- /egs/egs_bases/tts/vocoder/pwg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/egs/egs_bases/tts/vocoder/pwg.yaml -------------------------------------------------------------------------------- /inference/ProDiff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/inference/ProDiff.py -------------------------------------------------------------------------------- /inference/ProDiff_Teacher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/inference/ProDiff_Teacher.py -------------------------------------------------------------------------------- /inference/base_tts_infer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/inference/base_tts_infer.py -------------------------------------------------------------------------------- /inference/gradio/gradio_settings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/inference/gradio/gradio_settings.yaml -------------------------------------------------------------------------------- /inference/gradio/infer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/inference/gradio/infer.py -------------------------------------------------------------------------------- /modules/FastDiff/config/FastDiff.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/modules/FastDiff/config/FastDiff.yaml -------------------------------------------------------------------------------- /modules/FastDiff/config/FastDiff_libritts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/modules/FastDiff/config/FastDiff_libritts.yaml -------------------------------------------------------------------------------- /modules/FastDiff/config/FastDiff_sc09.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/modules/FastDiff/config/FastDiff_sc09.yaml -------------------------------------------------------------------------------- /modules/FastDiff/config/FastDiff_tacotron.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/modules/FastDiff/config/FastDiff_tacotron.yaml -------------------------------------------------------------------------------- /modules/FastDiff/config/FastDiff_vctk.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/modules/FastDiff/config/FastDiff_vctk.yaml -------------------------------------------------------------------------------- /modules/FastDiff/config/base.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/modules/FastDiff/config/base.yaml -------------------------------------------------------------------------------- /modules/FastDiff/module/FastDiff_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/modules/FastDiff/module/FastDiff_model.py -------------------------------------------------------------------------------- /modules/FastDiff/module/WaveNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/modules/FastDiff/module/WaveNet.py -------------------------------------------------------------------------------- /modules/FastDiff/module/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/modules/FastDiff/module/modules.py -------------------------------------------------------------------------------- /modules/FastDiff/module/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/modules/FastDiff/module/util.py -------------------------------------------------------------------------------- /modules/FastDiff/task/FastDiff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/modules/FastDiff/task/FastDiff.py -------------------------------------------------------------------------------- /modules/ProDiff/config/base.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/modules/ProDiff/config/base.yaml -------------------------------------------------------------------------------- /modules/ProDiff/config/prodiff.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/modules/ProDiff/config/prodiff.yaml -------------------------------------------------------------------------------- /modules/ProDiff/config/prodiff_teacher.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/modules/ProDiff/config/prodiff_teacher.yaml -------------------------------------------------------------------------------- /modules/ProDiff/model/ProDiff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/modules/ProDiff/model/ProDiff.py -------------------------------------------------------------------------------- /modules/ProDiff/model/ProDiff_teacher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/modules/ProDiff/model/ProDiff_teacher.py -------------------------------------------------------------------------------- /modules/ProDiff/task/ProDiff_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/modules/ProDiff/task/ProDiff_task.py -------------------------------------------------------------------------------- /modules/ProDiff/task/ProDiff_teacher_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/modules/ProDiff/task/ProDiff_teacher_task.py -------------------------------------------------------------------------------- /modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/commons/common_layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/modules/commons/common_layers.py -------------------------------------------------------------------------------- /modules/commons/espnet_positional_embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/modules/commons/espnet_positional_embedding.py -------------------------------------------------------------------------------- /modules/commons/ssim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/modules/commons/ssim.py -------------------------------------------------------------------------------- /modules/fastspeech/fs2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/modules/fastspeech/fs2.py -------------------------------------------------------------------------------- /modules/fastspeech/pe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/modules/fastspeech/pe.py -------------------------------------------------------------------------------- /modules/fastspeech/tts_modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/modules/fastspeech/tts_modules.py -------------------------------------------------------------------------------- /modules/hifigan/hifigan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/modules/hifigan/hifigan.py -------------------------------------------------------------------------------- /modules/hifigan/mel_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/modules/hifigan/mel_utils.py -------------------------------------------------------------------------------- /modules/parallel_wavegan/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/parallel_wavegan/layers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/modules/parallel_wavegan/layers/__init__.py -------------------------------------------------------------------------------- /modules/parallel_wavegan/layers/causal_conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/modules/parallel_wavegan/layers/causal_conv.py -------------------------------------------------------------------------------- /modules/parallel_wavegan/layers/pqmf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/modules/parallel_wavegan/layers/pqmf.py -------------------------------------------------------------------------------- /modules/parallel_wavegan/layers/residual_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/modules/parallel_wavegan/layers/residual_block.py -------------------------------------------------------------------------------- /modules/parallel_wavegan/layers/residual_stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/modules/parallel_wavegan/layers/residual_stack.py -------------------------------------------------------------------------------- /modules/parallel_wavegan/layers/tf_layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/modules/parallel_wavegan/layers/tf_layers.py -------------------------------------------------------------------------------- /modules/parallel_wavegan/layers/upsample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/modules/parallel_wavegan/layers/upsample.py -------------------------------------------------------------------------------- /modules/parallel_wavegan/losses/__init__.py: -------------------------------------------------------------------------------- 1 | from .stft_loss import * # NOQA 2 | -------------------------------------------------------------------------------- /modules/parallel_wavegan/losses/stft_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/modules/parallel_wavegan/losses/stft_loss.py -------------------------------------------------------------------------------- /modules/parallel_wavegan/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/modules/parallel_wavegan/models/__init__.py -------------------------------------------------------------------------------- /modules/parallel_wavegan/models/melgan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/modules/parallel_wavegan/models/melgan.py -------------------------------------------------------------------------------- /modules/parallel_wavegan/models/parallel_wavegan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/modules/parallel_wavegan/models/parallel_wavegan.py -------------------------------------------------------------------------------- /modules/parallel_wavegan/models/source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/modules/parallel_wavegan/models/source.py -------------------------------------------------------------------------------- /modules/parallel_wavegan/optimizers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/modules/parallel_wavegan/optimizers/__init__.py -------------------------------------------------------------------------------- /modules/parallel_wavegan/optimizers/radam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/modules/parallel_wavegan/optimizers/radam.py -------------------------------------------------------------------------------- /modules/parallel_wavegan/stft_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/modules/parallel_wavegan/stft_loss.py -------------------------------------------------------------------------------- /modules/parallel_wavegan/utils/__init__.py: -------------------------------------------------------------------------------- 1 | from .utils import * # NOQA 2 | -------------------------------------------------------------------------------- /modules/parallel_wavegan/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/modules/parallel_wavegan/utils/utils.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/requirements.txt -------------------------------------------------------------------------------- /tasks/base_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/tasks/base_task.py -------------------------------------------------------------------------------- /tasks/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/tasks/run.py -------------------------------------------------------------------------------- /tasks/tts/dataset_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/tasks/tts/dataset_utils.py -------------------------------------------------------------------------------- /tasks/tts/fs2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/tasks/tts/fs2.py -------------------------------------------------------------------------------- /tasks/tts/fs2_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/tasks/tts/fs2_utils.py -------------------------------------------------------------------------------- /tasks/tts/pe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/tasks/tts/pe.py -------------------------------------------------------------------------------- /tasks/tts/tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/tasks/tts/tts.py -------------------------------------------------------------------------------- /tasks/tts/tts_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/tasks/tts/tts_base.py -------------------------------------------------------------------------------- /tasks/tts/tts_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/tasks/tts/tts_utils.py -------------------------------------------------------------------------------- /tasks/vocoder/dataset_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/tasks/vocoder/dataset_utils.py -------------------------------------------------------------------------------- /tasks/vocoder/vocoder_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/tasks/vocoder/vocoder_base.py -------------------------------------------------------------------------------- /usr/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /usr/diff/diffusion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/usr/diff/diffusion.py -------------------------------------------------------------------------------- /usr/diff/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/usr/diff/net.py -------------------------------------------------------------------------------- /usr/diff/shallow_diffusion_tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/usr/diff/shallow_diffusion_tts.py -------------------------------------------------------------------------------- /usr/diffspeech_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/usr/diffspeech_task.py -------------------------------------------------------------------------------- /usr/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/usr/task.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/utils/__init__.py -------------------------------------------------------------------------------- /utils/audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/utils/audio.py -------------------------------------------------------------------------------- /utils/ckpt_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/utils/ckpt_utils.py -------------------------------------------------------------------------------- /utils/common_schedulers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/utils/common_schedulers.py -------------------------------------------------------------------------------- /utils/cwt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/utils/cwt.py -------------------------------------------------------------------------------- /utils/ddp_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/utils/ddp_utils.py -------------------------------------------------------------------------------- /utils/hparams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/utils/hparams.py -------------------------------------------------------------------------------- /utils/indexed_datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/utils/indexed_datasets.py -------------------------------------------------------------------------------- /utils/multiprocess_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/utils/multiprocess_utils.py -------------------------------------------------------------------------------- /utils/os_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/utils/os_utils.py -------------------------------------------------------------------------------- /utils/pitch_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/utils/pitch_utils.py -------------------------------------------------------------------------------- /utils/pl_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/utils/pl_utils.py -------------------------------------------------------------------------------- /utils/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/utils/plot.py -------------------------------------------------------------------------------- /utils/rnnoise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/utils/rnnoise.py -------------------------------------------------------------------------------- /utils/text_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/utils/text_encoder.py -------------------------------------------------------------------------------- /utils/text_norm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/utils/text_norm.py -------------------------------------------------------------------------------- /utils/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/utils/trainer.py -------------------------------------------------------------------------------- /utils/training_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/utils/training_utils.py -------------------------------------------------------------------------------- /utils/tts_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/utils/tts_utils.py -------------------------------------------------------------------------------- /vocoders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/vocoders/__init__.py -------------------------------------------------------------------------------- /vocoders/base_vocoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/vocoders/base_vocoder.py -------------------------------------------------------------------------------- /vocoders/fastdiff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/vocoders/fastdiff.py -------------------------------------------------------------------------------- /vocoders/hifigan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/vocoders/hifigan.py -------------------------------------------------------------------------------- /vocoders/pwg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/vocoders/pwg.py -------------------------------------------------------------------------------- /vocoders/vocoder_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rongjiehuang/ProDiff/HEAD/vocoders/vocoder_utils.py --------------------------------------------------------------------------------