reaperdoesntknow commited on
Commit
2719926
·
verified ·
1 Parent(s): 2ba606c

Upload tokenizer

Browse files
Files changed (2) hide show
  1. tokenizer.json +0 -0
  2. tokenizer_config.json +17 -0
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "backend": "tokenizers",
3
+ "bos_token": "<|bos|>",
4
+ "eos_token": "<|eos|>",
5
+ "extra_special_tokens": [
6
+ "<|system|>",
7
+ "<|user|>",
8
+ "<|assistant|>",
9
+ "<|think|>",
10
+ "<|reasoning|>"
11
+ ],
12
+ "is_local": true,
13
+ "model_max_length": 2048,
14
+ "pad_token": "<|pad|>",
15
+ "tokenizer_class": "TokenizersBackend",
16
+ "unk_token": "<|unk|>"
17
+ }