Text Generation
Transformers
Safetensors
English
llama
text-generation-inference
4-bit precision
TheBloke commited on
Commit
a94cc8f
1 Parent(s): 233d694

Initial GPTQ model commit

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