Implementation code of Non-Parallel Sequence-to-Sequence Voice Conversion with Disentangled Linguistic and Speaker Representations.
For audio samples, please visit our demo page.
- Python 3.6
- PyTorch 1.0.1
- CUDA 10.0
It is recommended you download the VCTK and CMU-ARCTIC datasets.
Install Python dependencies.
$ pip install -r requirements.txt
You can use extract_features.py
Write a snippet of code to walk through the dataset for generating list file for train, valid and test set.
Then you will need to modify the data reader to read your training data. The following are scripts you will need to modify.
For pre-training:
For fine-tuning:
Add correct paths to your local data, and run the bash script:
$ cd pre-train
$ bash run.sh
Run the inference code to generate audio samples on multi-speaker dataset. During inference, our model can be run on either TTS (using text inputs) or VC (using Mel-spectrogram inputs) mode.
$ python inference.py
Fine-tune the model and generate audio samples on conversion pair. During inference, our model can be run on either TTS (using text inputs) or VC (using Mel-spectrogram inputs) mode.
$ cd fine-tune
$ bash run.sh
On a single NVIDIA 1080 Ti GPU, with a batch size of 32, pre-training on VCTK takes approximately 64 hours of wall-clock time. Fine-tuning on two speakers (500 utterances each speaker) with a batch size of 8 takes approximately 6 hours of wall-clock time.
If you use this code, please cite:
@article{zhangnonpara2020,
author={Jing-Xuan {Zhang} and Zhen-Hua {Ling} and Li-Rong {Dai}},
journal={IEEE/ACM Transactions on Audio, Speech, and Language Processing},
title={Non-Parallel Sequence-to-Sequence Voice Conversion with Disentangled Linguistic and Speaker Representations},
year={2020},
volume={28},
number={1},
pages={540-552}}
Part of code was adapted from the following project: