├── README copy.md ├── README.md ├── checkpts ├── spk_encoder │ ├── LICENSE │ └── pretrained.pt ├── vc │ ├── train_dec_libritts_wodyn.log │ ├── train_dec_vctk_wodyn.log │ ├── train_enc_libritts.log │ └── train_enc_vctk.log └── vocoder │ ├── LICENSE │ └── config.json ├── data.py ├── demos ├── change_csv.py ├── cmu_dictionary.txt ├── create_csv.py ├── create_demo.py ├── create_scps.py ├── data_preparation_UASpeech.py ├── emb_demo.py ├── english.zip ├── inference_allaty.py ├── inference_allaugdata.py ├── inference_librispeech.py ├── librispeech-lexicon.txt ├── listening_test_demo.py ├── modified_cmu_dictionary.txt ├── modified_librispeech-lexicon.txt ├── modify_lexicon.py └── prepare_phonemetime.py ├── hifi-gan ├── LICENSE ├── README.md ├── __pycache__ │ ├── env.cpython-36.pyc │ ├── models.cpython-36.pyc │ └── xutils.cpython-36.pyc ├── env.py ├── meldataset.py ├── models.py └── xutils.py ├── libritts_data ├── global_mean_var.txt ├── mels_mode.pkl ├── phonemes.json └── phonemes.pkl ├── model ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── base.cpython-36.pyc │ ├── diffusion.cpython-36.pyc │ ├── encoder.cpython-36.pyc │ ├── modules.cpython-36.pyc │ ├── postnet.cpython-36.pyc │ ├── utils.cpython-36.pyc │ └── vc.cpython-36.pyc ├── base.py ├── diffusion.py ├── encoder.py ├── modules.py ├── postnet.py ├── utils.py └── vc.py ├── params.py ├── prepare_data.py ├── requirements.txt ├── speaker_encoder ├── LICENSE ├── README.md ├── encoder │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── audio.cpython-36.pyc │ │ ├── inference.cpython-36.pyc │ │ ├── model.cpython-36.pyc │ │ ├── params_data.cpython-36.pyc │ │ └── params_model.cpython-36.pyc │ ├── audio.py │ ├── config.py │ ├── data_objects │ │ ├── __init__.py │ │ ├── random_cycler.py │ │ ├── speaker.py │ │ ├── speaker_batch.py │ │ ├── speaker_verification_dataset.py │ │ └── utterance.py │ ├── inference.py │ ├── model.py │ ├── params_data.py │ ├── params_model.py │ ├── preprocess.py │ ├── train.py │ └── visualizations.py └── utils │ ├── __init__.py │ ├── argutils.py │ ├── logmmse.py │ └── profiler.py ├── train_dec.py ├── train_enc.py └── utils.py /README copy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/README copy.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/README.md -------------------------------------------------------------------------------- /checkpts/spk_encoder/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/checkpts/spk_encoder/LICENSE -------------------------------------------------------------------------------- /checkpts/spk_encoder/pretrained.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/checkpts/spk_encoder/pretrained.pt -------------------------------------------------------------------------------- /checkpts/vc/train_dec_libritts_wodyn.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/checkpts/vc/train_dec_libritts_wodyn.log -------------------------------------------------------------------------------- /checkpts/vc/train_dec_vctk_wodyn.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/checkpts/vc/train_dec_vctk_wodyn.log -------------------------------------------------------------------------------- /checkpts/vc/train_enc_libritts.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/checkpts/vc/train_enc_libritts.log -------------------------------------------------------------------------------- /checkpts/vc/train_enc_vctk.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/checkpts/vc/train_enc_vctk.log -------------------------------------------------------------------------------- /checkpts/vocoder/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/checkpts/vocoder/LICENSE -------------------------------------------------------------------------------- /checkpts/vocoder/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/checkpts/vocoder/config.json -------------------------------------------------------------------------------- /data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/data.py -------------------------------------------------------------------------------- /demos/change_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/demos/change_csv.py -------------------------------------------------------------------------------- /demos/cmu_dictionary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/demos/cmu_dictionary.txt -------------------------------------------------------------------------------- /demos/create_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/demos/create_csv.py -------------------------------------------------------------------------------- /demos/create_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/demos/create_demo.py -------------------------------------------------------------------------------- /demos/create_scps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/demos/create_scps.py -------------------------------------------------------------------------------- /demos/data_preparation_UASpeech.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/demos/data_preparation_UASpeech.py -------------------------------------------------------------------------------- /demos/emb_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/demos/emb_demo.py -------------------------------------------------------------------------------- /demos/english.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/demos/english.zip -------------------------------------------------------------------------------- /demos/inference_allaty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/demos/inference_allaty.py -------------------------------------------------------------------------------- /demos/inference_allaugdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/demos/inference_allaugdata.py -------------------------------------------------------------------------------- /demos/inference_librispeech.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/demos/inference_librispeech.py -------------------------------------------------------------------------------- /demos/librispeech-lexicon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/demos/librispeech-lexicon.txt -------------------------------------------------------------------------------- /demos/listening_test_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/demos/listening_test_demo.py -------------------------------------------------------------------------------- /demos/modified_cmu_dictionary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/demos/modified_cmu_dictionary.txt -------------------------------------------------------------------------------- /demos/modified_librispeech-lexicon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/demos/modified_librispeech-lexicon.txt -------------------------------------------------------------------------------- /demos/modify_lexicon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/demos/modify_lexicon.py -------------------------------------------------------------------------------- /demos/prepare_phonemetime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/demos/prepare_phonemetime.py -------------------------------------------------------------------------------- /hifi-gan/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/hifi-gan/LICENSE -------------------------------------------------------------------------------- /hifi-gan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/hifi-gan/README.md -------------------------------------------------------------------------------- /hifi-gan/__pycache__/env.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/hifi-gan/__pycache__/env.cpython-36.pyc -------------------------------------------------------------------------------- /hifi-gan/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/hifi-gan/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /hifi-gan/__pycache__/xutils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/hifi-gan/__pycache__/xutils.cpython-36.pyc -------------------------------------------------------------------------------- /hifi-gan/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/hifi-gan/env.py -------------------------------------------------------------------------------- /hifi-gan/meldataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/hifi-gan/meldataset.py -------------------------------------------------------------------------------- /hifi-gan/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/hifi-gan/models.py -------------------------------------------------------------------------------- /hifi-gan/xutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/hifi-gan/xutils.py -------------------------------------------------------------------------------- /libritts_data/global_mean_var.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/libritts_data/global_mean_var.txt -------------------------------------------------------------------------------- /libritts_data/mels_mode.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/libritts_data/mels_mode.pkl -------------------------------------------------------------------------------- /libritts_data/phonemes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/libritts_data/phonemes.json -------------------------------------------------------------------------------- /libritts_data/phonemes.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/libritts_data/phonemes.pkl -------------------------------------------------------------------------------- /model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/model/__init__.py -------------------------------------------------------------------------------- /model/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/model/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /model/__pycache__/base.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/model/__pycache__/base.cpython-36.pyc -------------------------------------------------------------------------------- /model/__pycache__/diffusion.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/model/__pycache__/diffusion.cpython-36.pyc -------------------------------------------------------------------------------- /model/__pycache__/encoder.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/model/__pycache__/encoder.cpython-36.pyc -------------------------------------------------------------------------------- /model/__pycache__/modules.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/model/__pycache__/modules.cpython-36.pyc -------------------------------------------------------------------------------- /model/__pycache__/postnet.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/model/__pycache__/postnet.cpython-36.pyc -------------------------------------------------------------------------------- /model/__pycache__/utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/model/__pycache__/utils.cpython-36.pyc -------------------------------------------------------------------------------- /model/__pycache__/vc.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/model/__pycache__/vc.cpython-36.pyc -------------------------------------------------------------------------------- /model/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/model/base.py -------------------------------------------------------------------------------- /model/diffusion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/model/diffusion.py -------------------------------------------------------------------------------- /model/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/model/encoder.py -------------------------------------------------------------------------------- /model/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/model/modules.py -------------------------------------------------------------------------------- /model/postnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/model/postnet.py -------------------------------------------------------------------------------- /model/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/model/utils.py -------------------------------------------------------------------------------- /model/vc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/model/vc.py -------------------------------------------------------------------------------- /params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/params.py -------------------------------------------------------------------------------- /prepare_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/prepare_data.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/requirements.txt -------------------------------------------------------------------------------- /speaker_encoder/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/speaker_encoder/LICENSE -------------------------------------------------------------------------------- /speaker_encoder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/speaker_encoder/README.md -------------------------------------------------------------------------------- /speaker_encoder/encoder/__init__.py: -------------------------------------------------------------------------------- 1 | """ from https://github.com/CorentinJ/Real-Time-Voice-Cloning """ 2 | -------------------------------------------------------------------------------- /speaker_encoder/encoder/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/speaker_encoder/encoder/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /speaker_encoder/encoder/__pycache__/audio.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/speaker_encoder/encoder/__pycache__/audio.cpython-36.pyc -------------------------------------------------------------------------------- /speaker_encoder/encoder/__pycache__/inference.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/speaker_encoder/encoder/__pycache__/inference.cpython-36.pyc -------------------------------------------------------------------------------- /speaker_encoder/encoder/__pycache__/model.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/speaker_encoder/encoder/__pycache__/model.cpython-36.pyc -------------------------------------------------------------------------------- /speaker_encoder/encoder/__pycache__/params_data.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/speaker_encoder/encoder/__pycache__/params_data.cpython-36.pyc -------------------------------------------------------------------------------- /speaker_encoder/encoder/__pycache__/params_model.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/speaker_encoder/encoder/__pycache__/params_model.cpython-36.pyc -------------------------------------------------------------------------------- /speaker_encoder/encoder/audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/speaker_encoder/encoder/audio.py -------------------------------------------------------------------------------- /speaker_encoder/encoder/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/speaker_encoder/encoder/config.py -------------------------------------------------------------------------------- /speaker_encoder/encoder/data_objects/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/speaker_encoder/encoder/data_objects/__init__.py -------------------------------------------------------------------------------- /speaker_encoder/encoder/data_objects/random_cycler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/speaker_encoder/encoder/data_objects/random_cycler.py -------------------------------------------------------------------------------- /speaker_encoder/encoder/data_objects/speaker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/speaker_encoder/encoder/data_objects/speaker.py -------------------------------------------------------------------------------- /speaker_encoder/encoder/data_objects/speaker_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/speaker_encoder/encoder/data_objects/speaker_batch.py -------------------------------------------------------------------------------- /speaker_encoder/encoder/data_objects/speaker_verification_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/speaker_encoder/encoder/data_objects/speaker_verification_dataset.py -------------------------------------------------------------------------------- /speaker_encoder/encoder/data_objects/utterance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/speaker_encoder/encoder/data_objects/utterance.py -------------------------------------------------------------------------------- /speaker_encoder/encoder/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/speaker_encoder/encoder/inference.py -------------------------------------------------------------------------------- /speaker_encoder/encoder/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/speaker_encoder/encoder/model.py -------------------------------------------------------------------------------- /speaker_encoder/encoder/params_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/speaker_encoder/encoder/params_data.py -------------------------------------------------------------------------------- /speaker_encoder/encoder/params_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/speaker_encoder/encoder/params_model.py -------------------------------------------------------------------------------- /speaker_encoder/encoder/preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/speaker_encoder/encoder/preprocess.py -------------------------------------------------------------------------------- /speaker_encoder/encoder/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/speaker_encoder/encoder/train.py -------------------------------------------------------------------------------- /speaker_encoder/encoder/visualizations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/speaker_encoder/encoder/visualizations.py -------------------------------------------------------------------------------- /speaker_encoder/utils/__init__.py: -------------------------------------------------------------------------------- 1 | """ from https://github.com/CorentinJ/Real-Time-Voice-Cloning """ 2 | -------------------------------------------------------------------------------- /speaker_encoder/utils/argutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/speaker_encoder/utils/argutils.py -------------------------------------------------------------------------------- /speaker_encoder/utils/logmmse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/speaker_encoder/utils/logmmse.py -------------------------------------------------------------------------------- /speaker_encoder/utils/profiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/speaker_encoder/utils/profiler.py -------------------------------------------------------------------------------- /train_dec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/train_dec.py -------------------------------------------------------------------------------- /train_enc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/train_enc.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHelin1997/DuTa-VC/HEAD/utils.py --------------------------------------------------------------------------------