linzai1992 / crank

Non-parallel Voice Conversion

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Crank

Non-parallel voice conversion based on vector-quantized variational autoencoder

Setup

  • Install Python dependency
$ git clone https://github.com/k2kobayashi/crank.git
$ cd crank/tools
$ make

Available recipe

Run VCC2020 recipe

crank has prepared recipe for Voice Conversion Challenge 2020. In crank recipe, there are 6 steps to implement non-parallel voice conversion.

  • stage 0
    • download dataset
  • stage 1
    • initialization
      • generate scp files and figures to be determine speaker-dependent parameters
  • stage 2
    • feature extraction
      • extract mlfb and mcep features
  • stage 3
    • training
  • stage 4
    • reconstuction
      • generate reconstructed feature for fine-tuning of neural vocoder
  • stage 5
    • evaluation
      • convert evaluation feature

Put dataset to downloads

Note that dataset is only released for the participants (2020/05/26).

$ cd egs/vaevc/vcc2020v1
$ mkdir downloads && cd downloads
$ mv <path_to_zip>/vcc2020_{training,evaluation}.zip downloads
$ unzip vcc2020_training.zip
$ unzip vcc2020_evaluation.zip

Run feature extraction and model training

Because the challenge defines its training and evaluation set, we have initially put configuration files. So, you need to run from 2nd stage.

$ ./run.sh --n_jobs 10 --stage 2 --stop_stage 5

where the n_jobs indicates the number of CPU cores used in the training.

Integration neural vocoder (kan-bayashi/ParallelWaveGAN)

Comming soon!!

Samples

Comming soon!!

Configuration

Configurations are defined in conf/default.yml. Followings are explanation of representative parameters.

  • feature

When you create your own recipe, be carefull to set feature extraction settings such as fftl, hop_size, fs, shiftms, and mcep_apha. These parameters usually depend on sampling frequency.

  • feat_type

You can choose feat_type either mlfb or mcep. If you choose mlfb, the converted waveforms are generated by GllifinLim vocoder. If you choose mcep, the converted waveforms are generated by world vocoder (i.e., excitation generation and MLSA filtering).

  • trainer_type

We support training with vqvae, lsgan, cycle, cyclegan using same generator network.

  • vqvae: default vqvae setting
  • lsgan: vqvae with adversarial learning
  • cycle: vqvae with cyclic constraints
  • cyclegan: vqvae with adevesarial learning and cyclic constraints

Create your recipe

Copy recipe template

Please copy template directory to start creation of your recipe.

$ cp -r egs/vaevc/template egs/vaevc/<new_recipe>
$ cd egs/vaevc/<new_recipe>

Put .wav files

You need to put wav files appropriate directory. You can choose either modifying download.sh or putting wav files. In either case, the wav files should be located in each speaker like following <new_recipe>/downloads/wav/{spkr1, spkr2, ..., spkr3}/*.wav.

If you modify downaload.sh,

$ vim local/download.sh

If you put wav files,

$ mkdir downloads
$ mv <path_to_your_wav_directory> downloads/wav
$ touch downloads/.done

Run initialization

The initialization process generates kaldi-like scp files.

$ ./run.sh --stage 1 --stop_stage 1

Then you modify speaker-dependent parameters in conf/spkr.yml using generated figures. Page 20~22 in slide help you how to set these parameters.

Run feature extraction, train, reconstruction, and evaluation

After preparing configuration, you run it.

$ ./run.sh --stage 2 --stop_stage 5

Achknowledgements

Thank you @kan-bayashi for lots of contributions and encouragement helps.

Who we are

About

Non-parallel Voice Conversion

License:MIT License


Languages

Language:Python 49.6%Language:Perl 38.9%Language:Shell 11.2%Language:Makefile 0.2%