├── My_model ├── AdversarialClassifier.py ├── LICENSE ├── VQ_Encoder.py ├── assets │ ├── demo.pkl │ ├── spk2gen.pkl │ ├── test_spmel │ │ ├── source │ │ │ └── source.npy │ │ ├── target │ │ │ └── target.npy │ │ └── test.pkl │ ├── test_wav_16000 │ │ ├── source │ │ │ └── source.wav │ │ └── target │ │ │ └── target.wav │ └── wavs │ │ ├── p226 │ │ └── p226_025_cat.wav │ │ └── p231 │ │ └── p231_025_cat.wav ├── data_loader.py ├── demo.py ├── draw_f0_distributions.py ├── draw_speaker_embedding.py ├── generate.py ├── hparams.py ├── inference.py ├── main.py ├── make_metadata.py ├── make_spect_f0.py ├── make_test_metadata.py ├── mi_estimators.py ├── model.py ├── my_demo │ └── source_target_e.ne.n_U.wav ├── pytorch_revgrad │ ├── __init__.py │ ├── functional.py │ ├── module.py │ └── version.py ├── solver.py ├── tfcompat │ ├── __init__.py │ └── hparam.py └── utils.py ├── README.md ├── SpeechSplit ├── assets │ ├── test_mel │ │ ├── p225 │ │ │ └── p225_001.npy │ │ ├── p232 │ │ │ └── p232_001.npy │ │ ├── test.pkl │ │ └── train_speechsplit.pkl │ ├── test_raptf0 │ │ ├── p225 │ │ │ └── p225_001.npy │ │ └── p232 │ │ │ └── p232_001.npy │ └── test_result │ │ ├── 192 │ │ └── p225_p232_001001_U.wav │ │ ├── 192p225_p232_001001_F.wav │ │ ├── 192p225_p232_001001_FU.wav │ │ ├── 192p225_p232_001001_R.wav │ │ ├── 192p225_p232_001001_RF.wav │ │ ├── 192p225_p232_001001_RFU.wav │ │ ├── 192p225_p232_001001_RU.wav │ │ ├── 192p225_p232_001001_U.wav │ │ ├── p225_p227_001001_RFU.wav │ │ └── p225_p232_001001_RFU.wav └── make_test_metadata.py ├── VCTK ├── mel_dim.txt ├── mel_dim_100.txt ├── mel_dim_100_crop.txt ├── mel_dim_9.txt ├── select_from_test.txt ├── select_from_train.txt ├── split_speaker.txt └── wav16 │ ├── Readme.txt │ ├── mel_dim.txt │ ├── mel_dim_100.txt │ ├── mel_dim_100_crop.txt │ ├── mel_dim_6.txt │ ├── mel_dim_6_crop.txt │ ├── select_from_test.txt │ ├── select_from_train.txt │ └── split_speaker.txt ├── WER.py ├── autovc ├── README.txt ├── hparams.py └── synthesis.py ├── data_split.py ├── f0_pcc.py ├── mcd.py ├── overview.png ├── requirement.txt ├── video.mp4 └── wav_cat.py /My_model/AdversarialClassifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungSeng/SRD-VC/HEAD/My_model/AdversarialClassifier.py -------------------------------------------------------------------------------- /My_model/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungSeng/SRD-VC/HEAD/My_model/LICENSE -------------------------------------------------------------------------------- /My_model/VQ_Encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungSeng/SRD-VC/HEAD/My_model/VQ_Encoder.py -------------------------------------------------------------------------------- /My_model/assets/demo.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungSeng/SRD-VC/HEAD/My_model/assets/demo.pkl -------------------------------------------------------------------------------- /My_model/assets/spk2gen.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungSeng/SRD-VC/HEAD/My_model/assets/spk2gen.pkl -------------------------------------------------------------------------------- /My_model/assets/test_spmel/source/source.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungSeng/SRD-VC/HEAD/My_model/assets/test_spmel/source/source.npy -------------------------------------------------------------------------------- /My_model/assets/test_spmel/target/target.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungSeng/SRD-VC/HEAD/My_model/assets/test_spmel/target/target.npy -------------------------------------------------------------------------------- /My_model/assets/test_spmel/test.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungSeng/SRD-VC/HEAD/My_model/assets/test_spmel/test.pkl -------------------------------------------------------------------------------- /My_model/assets/test_wav_16000/source/source.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungSeng/SRD-VC/HEAD/My_model/assets/test_wav_16000/source/source.wav -------------------------------------------------------------------------------- /My_model/assets/test_wav_16000/target/target.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungSeng/SRD-VC/HEAD/My_model/assets/test_wav_16000/target/target.wav -------------------------------------------------------------------------------- /My_model/assets/wavs/p226/p226_025_cat.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungSeng/SRD-VC/HEAD/My_model/assets/wavs/p226/p226_025_cat.wav -------------------------------------------------------------------------------- /My_model/assets/wavs/p231/p231_025_cat.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungSeng/SRD-VC/HEAD/My_model/assets/wavs/p231/p231_025_cat.wav -------------------------------------------------------------------------------- /My_model/data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungSeng/SRD-VC/HEAD/My_model/data_loader.py -------------------------------------------------------------------------------- /My_model/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungSeng/SRD-VC/HEAD/My_model/demo.py -------------------------------------------------------------------------------- /My_model/draw_f0_distributions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungSeng/SRD-VC/HEAD/My_model/draw_f0_distributions.py -------------------------------------------------------------------------------- /My_model/draw_speaker_embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungSeng/SRD-VC/HEAD/My_model/draw_speaker_embedding.py -------------------------------------------------------------------------------- /My_model/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungSeng/SRD-VC/HEAD/My_model/generate.py -------------------------------------------------------------------------------- /My_model/hparams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungSeng/SRD-VC/HEAD/My_model/hparams.py -------------------------------------------------------------------------------- /My_model/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungSeng/SRD-VC/HEAD/My_model/inference.py -------------------------------------------------------------------------------- /My_model/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungSeng/SRD-VC/HEAD/My_model/main.py -------------------------------------------------------------------------------- /My_model/make_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungSeng/SRD-VC/HEAD/My_model/make_metadata.py -------------------------------------------------------------------------------- /My_model/make_spect_f0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungSeng/SRD-VC/HEAD/My_model/make_spect_f0.py -------------------------------------------------------------------------------- /My_model/make_test_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungSeng/SRD-VC/HEAD/My_model/make_test_metadata.py -------------------------------------------------------------------------------- /My_model/mi_estimators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungSeng/SRD-VC/HEAD/My_model/mi_estimators.py -------------------------------------------------------------------------------- /My_model/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungSeng/SRD-VC/HEAD/My_model/model.py -------------------------------------------------------------------------------- /My_model/my_demo/source_target_e.ne.n_U.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungSeng/SRD-VC/HEAD/My_model/my_demo/source_target_e.ne.n_U.wav -------------------------------------------------------------------------------- /My_model/pytorch_revgrad/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungSeng/SRD-VC/HEAD/My_model/pytorch_revgrad/__init__.py -------------------------------------------------------------------------------- /My_model/pytorch_revgrad/functional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungSeng/SRD-VC/HEAD/My_model/pytorch_revgrad/functional.py -------------------------------------------------------------------------------- /My_model/pytorch_revgrad/module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungSeng/SRD-VC/HEAD/My_model/pytorch_revgrad/module.py -------------------------------------------------------------------------------- /My_model/pytorch_revgrad/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungSeng/SRD-VC/HEAD/My_model/pytorch_revgrad/version.py -------------------------------------------------------------------------------- /My_model/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungSeng/SRD-VC/HEAD/My_model/solver.py -------------------------------------------------------------------------------- /My_model/tfcompat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /My_model/tfcompat/hparam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungSeng/SRD-VC/HEAD/My_model/tfcompat/hparam.py -------------------------------------------------------------------------------- /My_model/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungSeng/SRD-VC/HEAD/My_model/utils.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungSeng/SRD-VC/HEAD/README.md -------------------------------------------------------------------------------- /SpeechSplit/assets/test_mel/p225/p225_001.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungSeng/SRD-VC/HEAD/SpeechSplit/assets/test_mel/p225/p225_001.npy -------------------------------------------------------------------------------- /SpeechSplit/assets/test_mel/p232/p232_001.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungSeng/SRD-VC/HEAD/SpeechSplit/assets/test_mel/p232/p232_001.npy -------------------------------------------------------------------------------- /SpeechSplit/assets/test_mel/test.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungSeng/SRD-VC/HEAD/SpeechSplit/assets/test_mel/test.pkl -------------------------------------------------------------------------------- /SpeechSplit/assets/test_mel/train_speechsplit.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungSeng/SRD-VC/HEAD/SpeechSplit/assets/test_mel/train_speechsplit.pkl -------------------------------------------------------------------------------- /SpeechSplit/assets/test_raptf0/p225/p225_001.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungSeng/SRD-VC/HEAD/SpeechSplit/assets/test_raptf0/p225/p225_001.npy -------------------------------------------------------------------------------- /SpeechSplit/assets/test_raptf0/p232/p232_001.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungSeng/SRD-VC/HEAD/SpeechSplit/assets/test_raptf0/p232/p232_001.npy -------------------------------------------------------------------------------- /SpeechSplit/assets/test_result/192/p225_p232_001001_U.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungSeng/SRD-VC/HEAD/SpeechSplit/assets/test_result/192/p225_p232_001001_U.wav -------------------------------------------------------------------------------- /SpeechSplit/assets/test_result/192p225_p232_001001_F.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungSeng/SRD-VC/HEAD/SpeechSplit/assets/test_result/192p225_p232_001001_F.wav -------------------------------------------------------------------------------- /SpeechSplit/assets/test_result/192p225_p232_001001_FU.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungSeng/SRD-VC/HEAD/SpeechSplit/assets/test_result/192p225_p232_001001_FU.wav -------------------------------------------------------------------------------- /SpeechSplit/assets/test_result/192p225_p232_001001_R.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungSeng/SRD-VC/HEAD/SpeechSplit/assets/test_result/192p225_p232_001001_R.wav -------------------------------------------------------------------------------- /SpeechSplit/assets/test_result/192p225_p232_001001_RF.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungSeng/SRD-VC/HEAD/SpeechSplit/assets/test_result/192p225_p232_001001_RF.wav -------------------------------------------------------------------------------- /SpeechSplit/assets/test_result/192p225_p232_001001_RFU.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungSeng/SRD-VC/HEAD/SpeechSplit/assets/test_result/192p225_p232_001001_RFU.wav -------------------------------------------------------------------------------- /SpeechSplit/assets/test_result/192p225_p232_001001_RU.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungSeng/SRD-VC/HEAD/SpeechSplit/assets/test_result/192p225_p232_001001_RU.wav -------------------------------------------------------------------------------- /SpeechSplit/assets/test_result/192p225_p232_001001_U.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungSeng/SRD-VC/HEAD/SpeechSplit/assets/test_result/192p225_p232_001001_U.wav -------------------------------------------------------------------------------- /SpeechSplit/assets/test_result/p225_p227_001001_RFU.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungSeng/SRD-VC/HEAD/SpeechSplit/assets/test_result/p225_p227_001001_RFU.wav -------------------------------------------------------------------------------- /SpeechSplit/assets/test_result/p225_p232_001001_RFU.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungSeng/SRD-VC/HEAD/SpeechSplit/assets/test_result/p225_p232_001001_RFU.wav -------------------------------------------------------------------------------- /SpeechSplit/make_test_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungSeng/SRD-VC/HEAD/SpeechSplit/make_test_metadata.py -------------------------------------------------------------------------------- /VCTK/mel_dim.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungSeng/SRD-VC/HEAD/VCTK/mel_dim.txt -------------------------------------------------------------------------------- /VCTK/mel_dim_100.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungSeng/SRD-VC/HEAD/VCTK/mel_dim_100.txt -------------------------------------------------------------------------------- /VCTK/mel_dim_100_crop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungSeng/SRD-VC/HEAD/VCTK/mel_dim_100_crop.txt -------------------------------------------------------------------------------- /VCTK/mel_dim_9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungSeng/SRD-VC/HEAD/VCTK/mel_dim_9.txt -------------------------------------------------------------------------------- /VCTK/select_from_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungSeng/SRD-VC/HEAD/VCTK/select_from_test.txt -------------------------------------------------------------------------------- /VCTK/select_from_train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungSeng/SRD-VC/HEAD/VCTK/select_from_train.txt -------------------------------------------------------------------------------- /VCTK/split_speaker.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungSeng/SRD-VC/HEAD/VCTK/split_speaker.txt -------------------------------------------------------------------------------- /VCTK/wav16/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungSeng/SRD-VC/HEAD/VCTK/wav16/Readme.txt -------------------------------------------------------------------------------- /VCTK/wav16/mel_dim.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungSeng/SRD-VC/HEAD/VCTK/wav16/mel_dim.txt -------------------------------------------------------------------------------- /VCTK/wav16/mel_dim_100.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungSeng/SRD-VC/HEAD/VCTK/wav16/mel_dim_100.txt -------------------------------------------------------------------------------- /VCTK/wav16/mel_dim_100_crop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungSeng/SRD-VC/HEAD/VCTK/wav16/mel_dim_100_crop.txt -------------------------------------------------------------------------------- /VCTK/wav16/mel_dim_6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungSeng/SRD-VC/HEAD/VCTK/wav16/mel_dim_6.txt -------------------------------------------------------------------------------- /VCTK/wav16/mel_dim_6_crop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungSeng/SRD-VC/HEAD/VCTK/wav16/mel_dim_6_crop.txt -------------------------------------------------------------------------------- /VCTK/wav16/select_from_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungSeng/SRD-VC/HEAD/VCTK/wav16/select_from_test.txt -------------------------------------------------------------------------------- /VCTK/wav16/select_from_train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungSeng/SRD-VC/HEAD/VCTK/wav16/select_from_train.txt -------------------------------------------------------------------------------- /VCTK/wav16/split_speaker.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungSeng/SRD-VC/HEAD/VCTK/wav16/split_speaker.txt -------------------------------------------------------------------------------- /WER.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungSeng/SRD-VC/HEAD/WER.py -------------------------------------------------------------------------------- /autovc/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungSeng/SRD-VC/HEAD/autovc/README.txt -------------------------------------------------------------------------------- /autovc/hparams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungSeng/SRD-VC/HEAD/autovc/hparams.py -------------------------------------------------------------------------------- /autovc/synthesis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungSeng/SRD-VC/HEAD/autovc/synthesis.py -------------------------------------------------------------------------------- /data_split.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungSeng/SRD-VC/HEAD/data_split.py -------------------------------------------------------------------------------- /f0_pcc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungSeng/SRD-VC/HEAD/f0_pcc.py -------------------------------------------------------------------------------- /mcd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungSeng/SRD-VC/HEAD/mcd.py -------------------------------------------------------------------------------- /overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungSeng/SRD-VC/HEAD/overview.png -------------------------------------------------------------------------------- /requirement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungSeng/SRD-VC/HEAD/requirement.txt -------------------------------------------------------------------------------- /video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungSeng/SRD-VC/HEAD/video.mp4 -------------------------------------------------------------------------------- /wav_cat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YoungSeng/SRD-VC/HEAD/wav_cat.py --------------------------------------------------------------------------------