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.

Constants.py 110B

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