Text Generation
Transformers
Safetensors
English
llama
sft
text-generation-inference
4-bit precision
TheBloke commited on
Commit
2d13d1c
1 Parent(s): 37514d2

Initial GPTQ model commit

Browse files
Files changed (1) hide show
  1. special_tokens_map.json +19 -0
special_tokens_map.json ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "additional_special_tokens": [
3
+ "<|im_start|>",
4
+ "<|im_end|>"
5
+ ],
6
+ "bos_token": "<|im_start|>",
7
+ "cls_token": "<CLS>",
8
+ "eos_token": "<|im_end|>",
9
+ "mask_token": "<MASK>",
10
+ "pad_token": "<PAD>",
11
+ "sep_token": "<SEP>",
12
+ "unk_token": {
13
+ "content": "<unk>",
14
+ "lstrip": false,
15
+ "normalized": false,
16
+ "rstrip": false,
17
+ "single_word": false
18
+ }
19
+ }