rxmha125 commited on
Commit
4b5410e
·
verified ·
1 Parent(s): b3ae412

Upload folder using huggingface_hub

Browse files
Files changed (3) hide show
  1. special_tokens_map.json +13 -0
  2. tokenizer.json +0 -0
  3. tokenizer_config.json +16 -0
special_tokens_map.json ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "additional_special_tokens": [
3
+ "<|user|>",
4
+ "<|assistant|>",
5
+ "<|fim_prefix|>",
6
+ "<|fim_middle|>",
7
+ "<|fim_suffix|>"
8
+ ],
9
+ "bos_token": "[BOS]",
10
+ "eos_token": "<|endoftext|>",
11
+ "pad_token": "[PAD]",
12
+ "unk_token": "[UNK]"
13
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "tokenizer_class": "PreTrainedTokenizerFast",
3
+ "bos_token": "[BOS]",
4
+ "eos_token": "<|endoftext|>",
5
+ "unk_token": "[UNK]",
6
+ "pad_token": "[PAD]",
7
+ "additional_special_tokens": [
8
+ "<|user|>",
9
+ "<|assistant|>",
10
+ "<|fim_prefix|>",
11
+ "<|fim_middle|>",
12
+ "<|fim_suffix|>"
13
+ ],
14
+ "model_max_length": 32768,
15
+ "clean_up_tokenization_spaces": false
16
+ }