Skip to content

Latest commit

 

History

History
21 lines (17 loc) · 863 Bytes

README.md

File metadata and controls

21 lines (17 loc) · 863 Bytes

FB-MelGAN

A pytorch implementation of the FB-MelGAN(https://arxiv.org/pdf/2005.05106.pdf)

Prepare dataset

  • Download dataset for training. This can be any wav files.
  • Edit configuration in utils/audio.py
  • Process data: python process.py --wav_dir="wavs" --output="data"

Pre_train & Train & Tensorboard

  • python pre_train.py --input="data/train"
  • python train.py --input="data/train"
  • tensorboard --logdir logdir

Inference

  • python generate.py --input="data/test"

Reference