TheBloke commited on
Commit
8d15777
1 Parent(s): 6ade7a1

GPTQ model commit

Browse files
Files changed (1) hide show
  1. special_tokens_map.json +34 -0
special_tokens_map.json ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "additional_special_tokens": [
3
+ "<human>:",
4
+ "<bot>:",
5
+ "<human_end>",
6
+ "<bot_end>",
7
+ "<func_start>",
8
+ "<func_end>",
9
+ "<docstring_start>",
10
+ "<docstring_end>"
11
+ ],
12
+ "bos_token": {
13
+ "content": "<s>",
14
+ "lstrip": false,
15
+ "normalized": true,
16
+ "rstrip": false,
17
+ "single_word": false
18
+ },
19
+ "eos_token": {
20
+ "content": "</s>",
21
+ "lstrip": false,
22
+ "normalized": true,
23
+ "rstrip": false,
24
+ "single_word": false
25
+ },
26
+ "pad_token": "</s>",
27
+ "unk_token": {
28
+ "content": "<unk>",
29
+ "lstrip": false,
30
+ "normalized": true,
31
+ "rstrip": false,
32
+ "single_word": false
33
+ }
34
+ }