Text Generation
Transformers
Safetensors
English
llama
causal-lm
text-generation-inference
4-bit precision
gptq
TheBloke mzbac commited on
Commit
c427dd9
1 Parent(s): 55ea960

Fix the special token mapping (#20)

Browse files

- Fix the special token mapping (67dc7e41b29aeb56be9f5e0320f338707e332b16)


Co-authored-by: null <[email protected]>

Files changed (1) hide show
  1. special_tokens_map.json +2 -2
special_tokens_map.json CHANGED
@@ -1,6 +1,6 @@
1
  {
2
- "bos_token": "</s>",
3
  "eos_token": "</s>",
4
  "pad_token": "[PAD]",
5
- "unk_token": "</s>"
6
  }
 
1
  {
2
+ "bos_token": "<s>",
3
  "eos_token": "</s>",
4
  "pad_token": "[PAD]",
5
+ "unk_token": "<unk>"
6
  }