AlexGall commited on
Commit
e58949e
·
verified ·
1 Parent(s): 1589966

Create special_tokens_map.json

Browse files
Files changed (1) hide show
  1. special_tokens_map.json +58 -0
special_tokens_map.json ADDED
@@ -0,0 +1,58 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": {
3
+ "content": "<|begin_of_text|>",
4
+ "lstrip": false,
5
+ "normalized": false,
6
+ "rstrip": false,
7
+ "single_word": false
8
+ },
9
+ "eos_token": {
10
+ "content": "<|end_of_text|>",
11
+ "lstrip": false,
12
+ "normalized": false,
13
+ "rstrip": false,
14
+ "single_word": false
15
+ },
16
+ "pad_token": {
17
+ "content": "<|pad|>",
18
+ "lstrip": false,
19
+ "normalized": false,
20
+ "rstrip": false,
21
+ "single_word": false
22
+ },
23
+ "unk_token": {
24
+ "content": "<|unk|>",
25
+ "lstrip": false,
26
+ "normalized": false,
27
+ "rstrip": false,
28
+ "single_word": false
29
+ },
30
+ "additional_special_tokens": [
31
+ "<|code_start|>",
32
+ "<|code_end|>",
33
+ "<|math_start|>",
34
+ "<|math_end|>",
35
+ "<|reasoning_start|>",
36
+ "<|reasoning_end|>",
37
+ "<|explanation_start|>",
38
+ "<|explanation_end|>",
39
+ "<|test_start|>",
40
+ "<|test_end|>",
41
+ "<|doc_start|>",
42
+ "<|doc_end|>",
43
+ "<|python|>",
44
+ "<|javascript|>",
45
+ "<|typescript|>",
46
+ "<|java|>",
47
+ "<|cpp|>",
48
+ "<|csharp|>",
49
+ "<|go|>",
50
+ "<|rust|>",
51
+ "<|sql|>",
52
+ "<|bash|>",
53
+ "<|user|>",
54
+ "<|assistant|>",
55
+ "<|system|>",
56
+ "<|end|>"
57
+ ]
58
+ }