raygx commited on
Commit
89593ba
1 Parent(s): dff9dfa

Upload tokenizer

Browse files
special_tokens_map.json CHANGED
@@ -1,5 +1,7 @@
1
  {
2
- "bos_token": "[CLS]",
3
- "eos_token": "[SEP]",
4
- "pad_token": "[PAD]"
 
 
5
  }
 
1
  {
2
+ "cls_token": "[CLS]",
3
+ "mask_token": "[MASK]",
4
+ "pad_token": "[PAD]",
5
+ "sep_token": "[SEP]",
6
+ "unk_token": "[UNK]"
7
  }
tokenizer.json CHANGED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json CHANGED
@@ -1,6 +1,6 @@
1
  {
2
  "clean_up_tokenization_spaces": true,
3
- "model_max_length": 1000000000000000019884624838656,
4
  "padding_side": "left",
5
  "tokenizer_class": "PreTrainedTokenizerFast"
6
  }
 
1
  {
2
  "clean_up_tokenization_spaces": true,
3
+ "model_max_length": 512,
4
  "padding_side": "left",
5
  "tokenizer_class": "PreTrainedTokenizerFast"
6
  }