Fork of https://github.com/alokprasad/fastspeech_squeezewave to also fix denoising in squeezewave
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
1007 B

  1. {
  2. "train_config": {
  3. "fp16_run": true,
  4. "output_directory": "checkpoints",
  5. "epochs": 100000,
  6. "learning_rate": 4e-4,
  7. "sigma": 1.0,
  8. "iters_per_checkpoint": 2000,
  9. "batch_size": 96,
  10. "seed": 1234,
  11. "checkpoint_path": "",
  12. "with_tensorboard": true
  13. },
  14. "data_config": {
  15. "training_files": "train_files.txt",
  16. "segment_length": 16384,
  17. "sampling_rate": 22050,
  18. "filter_length": 1024,
  19. "hop_length": 256,
  20. "win_length": 1024,
  21. "mel_fmin": 0.0,
  22. "mel_fmax": 8000.0
  23. },
  24. "dist_config": {
  25. "dist_backend": "nccl",
  26. "dist_url": "tcp://localhost:54321"
  27. },
  28. "squeezewave_config": {
  29. "n_mel_channels": 80,
  30. "n_flows": 12,
  31. "n_audio_channel": 128,
  32. "n_early_every": 2,
  33. "n_early_size": 16,
  34. "WN_config": {
  35. "n_layers": 8,
  36. "n_channels": 128,
  37. "kernel_size": 3
  38. }
  39. }
  40. }