avijit commited on
Commit
5da3591
·
verified ·
1 Parent(s): 38fba74

Upload tokenizer

Browse files
Files changed (2) hide show
  1. special_tokens_map.json +14 -2
  2. tokenizer_config.json +8 -1
special_tokens_map.json CHANGED
@@ -13,6 +13,18 @@
13
  "rstrip": false,
14
  "single_word": false
15
  },
16
- "mask_token": "<|reserved_special_token_0|>",
17
- "pad_token": "<|end_of_text|>"
 
 
 
 
 
 
 
 
 
 
 
 
18
  }
 
13
  "rstrip": false,
14
  "single_word": false
15
  },
16
+ "mask_token": {
17
+ "content": "<|reserved_special_token_0|>",
18
+ "lstrip": false,
19
+ "normalized": false,
20
+ "rstrip": false,
21
+ "single_word": false
22
+ },
23
+ "pad_token": {
24
+ "content": "<|end_of_text|>",
25
+ "lstrip": false,
26
+ "normalized": false,
27
+ "rstrip": false,
28
+ "single_word": false
29
+ }
30
  }
tokenizer_config.json CHANGED
@@ -2053,11 +2053,18 @@
2053
  "clean_up_tokenization_spaces": true,
2054
  "eos_token": "<|end_of_text|>",
2055
  "mask_token": "<|reserved_special_token_0|>",
 
2056
  "model_input_names": [
2057
  "input_ids",
2058
  "attention_mask"
2059
  ],
2060
  "model_max_length": 131072,
 
2061
  "pad_token": "<|end_of_text|>",
2062
- "tokenizer_class": "PreTrainedTokenizerFast"
 
 
 
 
 
2063
  }
 
2053
  "clean_up_tokenization_spaces": true,
2054
  "eos_token": "<|end_of_text|>",
2055
  "mask_token": "<|reserved_special_token_0|>",
2056
+ "max_length": 256,
2057
  "model_input_names": [
2058
  "input_ids",
2059
  "attention_mask"
2060
  ],
2061
  "model_max_length": 131072,
2062
+ "pad_to_multiple_of": null,
2063
  "pad_token": "<|end_of_text|>",
2064
+ "pad_token_type_id": 0,
2065
+ "padding_side": "right",
2066
+ "stride": 0,
2067
+ "tokenizer_class": "PreTrainedTokenizerFast",
2068
+ "truncation_side": "left",
2069
+ "truncation_strategy": "longest_first"
2070
  }