beakerstreet commited on
Commit
e7ee01c
1 Parent(s): a34e252

Create special_tokens_map.json

Browse files
Files changed (1) hide show
  1. special_tokens_map.json +6 -0
special_tokens_map.json ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ {
2
+ "pad_token": "[PAD]", // Used to make all sequences the same length by padding
3
+ "unk_token": "[UNK]", // Used when the tokenizer encounters words it doesn't know
4
+ "cls_token": "[CLS]", // Often used at the start of sequences (Classification token)
5
+ "sep_token": "[SEP]" // Used to separate different parts of the input (Separator token)
6
+ }