bm-v1 / special_tokens_map.json
beakerstreet's picture
Create special_tokens_map.json
e7ee01c verified
raw
history blame contribute delete
358 Bytes
{
"pad_token": "[PAD]", // Used to make all sequences the same length by padding
"unk_token": "[UNK]", // Used when the tokenizer encounters words it doesn't know
"cls_token": "[CLS]", // Often used at the start of sequences (Classification token)
"sep_token": "[SEP]" // Used to separate different parts of the input (Separator token)
}