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.

9 lines
108 B

  1. PAD = 0
  2. UNK = 1
  3. BOS = 2
  4. EOS = 3
  5. PAD_WORD = '<blank>'
  6. UNK_WORD = '<unk>'
  7. BOS_WORD = '<s>'
  8. EOS_WORD = '</s>'