├── LICENSE ├── README.md ├── commons.py ├── configs └── hubert-neuraldec-vits.json ├── conv.py ├── convert.ipynb ├── data_utils.py ├── downsample.py ├── extra ├── DSConv.py ├── attentions.py ├── commons.py └── modules.py ├── filelists ├── test.txt ├── train.txt └── val.txt ├── hifigan ├── __init__.py ├── config.json ├── generator_v1.txt └── models.py ├── losses.py ├── lstm.py ├── mel_processing.py ├── models.py ├── modules.py ├── norm.py ├── preprocess_code.py ├── preprocess_flist.py ├── preprocess_spk.py ├── preprocess_sr.py ├── requirements.txt ├── resources └── NeurlVC.png ├── speaker_encoder ├── __init__.py ├── audio.py ├── ckpt │ ├── pretrained_bak_5805000.pt │ └── pretrained_bak_5805000.pt.txt ├── compute_embed.py ├── config.py ├── data_objects │ ├── __init__.py │ ├── random_cycler.py │ ├── speaker.py │ ├── speaker_batch.py │ ├── speaker_verification_dataset.py │ └── utterance.py ├── hparams.py ├── inference.py ├── model.py ├── params_data.py ├── params_model.py ├── preprocess.py ├── train.py ├── visualizations.py └── voice_encoder.py ├── train.py ├── utils.py └── wavlm ├── WavLM-Large.pt.txt ├── WavLM.py ├── __init__.py └── modules.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzy1hjq/NeuralVC/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzy1hjq/NeuralVC/HEAD/README.md -------------------------------------------------------------------------------- /commons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzy1hjq/NeuralVC/HEAD/commons.py -------------------------------------------------------------------------------- /configs/hubert-neuraldec-vits.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzy1hjq/NeuralVC/HEAD/configs/hubert-neuraldec-vits.json -------------------------------------------------------------------------------- /conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzy1hjq/NeuralVC/HEAD/conv.py -------------------------------------------------------------------------------- /convert.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzy1hjq/NeuralVC/HEAD/convert.ipynb -------------------------------------------------------------------------------- /data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzy1hjq/NeuralVC/HEAD/data_utils.py -------------------------------------------------------------------------------- /downsample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzy1hjq/NeuralVC/HEAD/downsample.py -------------------------------------------------------------------------------- /extra/DSConv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzy1hjq/NeuralVC/HEAD/extra/DSConv.py -------------------------------------------------------------------------------- /extra/attentions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzy1hjq/NeuralVC/HEAD/extra/attentions.py -------------------------------------------------------------------------------- /extra/commons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzy1hjq/NeuralVC/HEAD/extra/commons.py -------------------------------------------------------------------------------- /extra/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzy1hjq/NeuralVC/HEAD/extra/modules.py -------------------------------------------------------------------------------- /filelists/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzy1hjq/NeuralVC/HEAD/filelists/test.txt -------------------------------------------------------------------------------- /filelists/train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzy1hjq/NeuralVC/HEAD/filelists/train.txt -------------------------------------------------------------------------------- /filelists/val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzy1hjq/NeuralVC/HEAD/filelists/val.txt -------------------------------------------------------------------------------- /hifigan/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzy1hjq/NeuralVC/HEAD/hifigan/__init__.py -------------------------------------------------------------------------------- /hifigan/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzy1hjq/NeuralVC/HEAD/hifigan/config.json -------------------------------------------------------------------------------- /hifigan/generator_v1.txt: -------------------------------------------------------------------------------- 1 | https://github.com/jik876/hifi-gan -------------------------------------------------------------------------------- /hifigan/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzy1hjq/NeuralVC/HEAD/hifigan/models.py -------------------------------------------------------------------------------- /losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzy1hjq/NeuralVC/HEAD/losses.py -------------------------------------------------------------------------------- /lstm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzy1hjq/NeuralVC/HEAD/lstm.py -------------------------------------------------------------------------------- /mel_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzy1hjq/NeuralVC/HEAD/mel_processing.py -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzy1hjq/NeuralVC/HEAD/models.py -------------------------------------------------------------------------------- /modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzy1hjq/NeuralVC/HEAD/modules.py -------------------------------------------------------------------------------- /norm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzy1hjq/NeuralVC/HEAD/norm.py -------------------------------------------------------------------------------- /preprocess_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzy1hjq/NeuralVC/HEAD/preprocess_code.py -------------------------------------------------------------------------------- /preprocess_flist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzy1hjq/NeuralVC/HEAD/preprocess_flist.py -------------------------------------------------------------------------------- /preprocess_spk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzy1hjq/NeuralVC/HEAD/preprocess_spk.py -------------------------------------------------------------------------------- /preprocess_sr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzy1hjq/NeuralVC/HEAD/preprocess_sr.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzy1hjq/NeuralVC/HEAD/requirements.txt -------------------------------------------------------------------------------- /resources/NeurlVC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzy1hjq/NeuralVC/HEAD/resources/NeurlVC.png -------------------------------------------------------------------------------- /speaker_encoder/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /speaker_encoder/audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzy1hjq/NeuralVC/HEAD/speaker_encoder/audio.py -------------------------------------------------------------------------------- /speaker_encoder/ckpt/pretrained_bak_5805000.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzy1hjq/NeuralVC/HEAD/speaker_encoder/ckpt/pretrained_bak_5805000.pt -------------------------------------------------------------------------------- /speaker_encoder/ckpt/pretrained_bak_5805000.pt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzy1hjq/NeuralVC/HEAD/speaker_encoder/ckpt/pretrained_bak_5805000.pt.txt -------------------------------------------------------------------------------- /speaker_encoder/compute_embed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzy1hjq/NeuralVC/HEAD/speaker_encoder/compute_embed.py -------------------------------------------------------------------------------- /speaker_encoder/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzy1hjq/NeuralVC/HEAD/speaker_encoder/config.py -------------------------------------------------------------------------------- /speaker_encoder/data_objects/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzy1hjq/NeuralVC/HEAD/speaker_encoder/data_objects/__init__.py -------------------------------------------------------------------------------- /speaker_encoder/data_objects/random_cycler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzy1hjq/NeuralVC/HEAD/speaker_encoder/data_objects/random_cycler.py -------------------------------------------------------------------------------- /speaker_encoder/data_objects/speaker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzy1hjq/NeuralVC/HEAD/speaker_encoder/data_objects/speaker.py -------------------------------------------------------------------------------- /speaker_encoder/data_objects/speaker_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzy1hjq/NeuralVC/HEAD/speaker_encoder/data_objects/speaker_batch.py -------------------------------------------------------------------------------- /speaker_encoder/data_objects/speaker_verification_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzy1hjq/NeuralVC/HEAD/speaker_encoder/data_objects/speaker_verification_dataset.py -------------------------------------------------------------------------------- /speaker_encoder/data_objects/utterance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzy1hjq/NeuralVC/HEAD/speaker_encoder/data_objects/utterance.py -------------------------------------------------------------------------------- /speaker_encoder/hparams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzy1hjq/NeuralVC/HEAD/speaker_encoder/hparams.py -------------------------------------------------------------------------------- /speaker_encoder/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzy1hjq/NeuralVC/HEAD/speaker_encoder/inference.py -------------------------------------------------------------------------------- /speaker_encoder/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzy1hjq/NeuralVC/HEAD/speaker_encoder/model.py -------------------------------------------------------------------------------- /speaker_encoder/params_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzy1hjq/NeuralVC/HEAD/speaker_encoder/params_data.py -------------------------------------------------------------------------------- /speaker_encoder/params_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzy1hjq/NeuralVC/HEAD/speaker_encoder/params_model.py -------------------------------------------------------------------------------- /speaker_encoder/preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzy1hjq/NeuralVC/HEAD/speaker_encoder/preprocess.py -------------------------------------------------------------------------------- /speaker_encoder/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzy1hjq/NeuralVC/HEAD/speaker_encoder/train.py -------------------------------------------------------------------------------- /speaker_encoder/visualizations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzy1hjq/NeuralVC/HEAD/speaker_encoder/visualizations.py -------------------------------------------------------------------------------- /speaker_encoder/voice_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzy1hjq/NeuralVC/HEAD/speaker_encoder/voice_encoder.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzy1hjq/NeuralVC/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzy1hjq/NeuralVC/HEAD/utils.py -------------------------------------------------------------------------------- /wavlm/WavLM-Large.pt.txt: -------------------------------------------------------------------------------- 1 | https://github.com/microsoft/unilm/tree/master/wavlm -------------------------------------------------------------------------------- /wavlm/WavLM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzy1hjq/NeuralVC/HEAD/wavlm/WavLM.py -------------------------------------------------------------------------------- /wavlm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzy1hjq/NeuralVC/HEAD/wavlm/__init__.py -------------------------------------------------------------------------------- /wavlm/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzy1hjq/NeuralVC/HEAD/wavlm/modules.py --------------------------------------------------------------------------------