rellow / src /constants /tokens.py
Rafael Camargo
chore: indent python files using 2 spaces as tab size
da3a6cf
special_tokens = {
'<pad>': 0,
'<sos>': 1,
'<eos>': 2,
}
PAD_ID = special_tokens["<pad>"]
SOS_ID = special_tokens["<sos>"]
EOS_ID = special_tokens["<eos>"]