testaccount-ai commited on
Commit
0cd61d0
·
verified ·
1 Parent(s): e3aa3bb

Create tokenizer.json

Browse files
Files changed (1) hide show
  1. tokenizer.json +80 -0
tokenizer.json ADDED
@@ -0,0 +1,80 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "version": "1.0",
3
+ "truncation": null,
4
+ "padding": null,
5
+ "added_tokens": [
6
+ {
7
+ "id": 151643,
8
+ "content": "<|endoftext|>",
9
+ "single_word": false,
10
+ "lstrip": false,
11
+ "rstrip": false,
12
+ "normalized": false,
13
+ "special": true
14
+ },
15
+ {
16
+ "id": 151644,
17
+ "content": "<|user|>",
18
+ "single_word": false,
19
+ "lstrip": false,
20
+ "rstrip": false,
21
+ "normalized": false,
22
+ "special": true
23
+ },
24
+ {
25
+ "id": 151645,
26
+ "content": "<|assistant|>",
27
+ "single_word": false,
28
+ "lstrip": false,
29
+ "rstrip": false,
30
+ "normalized": false,
31
+ "special": true
32
+ },
33
+ {
34
+ "id": 151646,
35
+ "content": "<|system|>",
36
+ "single_word": false,
37
+ "lstrip": false,
38
+ "rstrip": false,
39
+ "normalized": false,
40
+ "special": true
41
+ }
42
+ ],
43
+ "model": {
44
+ "type": "BPE",
45
+ "dropout": null,
46
+ "unk_token": null,
47
+ "continuing_subword_prefix": "",
48
+ "end_of_word_suffix": "",
49
+ "fuse_unk": false,
50
+ "byte_fallback": true,
51
+ "vocab": {},
52
+ "merges": []
53
+ },
54
+ "pre_tokenizer": {
55
+ "type": "ByteLevel",
56
+ "add_prefix_space": true,
57
+ "trim_offsets": true,
58
+ "use_regex": true
59
+ },
60
+ "post_processor": {
61
+ "type": "TemplateProcessing",
62
+ "single": ["$A", "<|endoftext|>"],
63
+ "pair": ["$A", "$B", "<|endoftext|>"],
64
+ "special_tokens": {
65
+ "<|endoftext|>": {
66
+ "id": 151643,
67
+ "ids": [151643]
68
+ }
69
+ }
70
+ },
71
+ "decoder": {
72
+ "type": "ByteLevel",
73
+ "add_prefix_space": true,
74
+ "trim_offsets": true,
75
+ "use_regex": true
76
+ },
77
+ "normalizer": {
78
+ "type": "NFC"
79
+ }
80
+ }