feihu.hf
commited on
Commit
·
660c408
1
Parent(s):
b1dc997
update tokenizer_config.json
Browse files- tokenizer_config.json +2 -5
tokenizer_config.json
CHANGED
|
@@ -26,12 +26,9 @@
|
|
| 26 |
"special": true
|
| 27 |
}
|
| 28 |
},
|
| 29 |
-
"additional_special_tokens": [
|
| 30 |
-
"<|im_start|>",
|
| 31 |
-
"<|im_end|>"
|
| 32 |
-
],
|
| 33 |
"bos_token": null,
|
| 34 |
-
"chat_template": "{% for message in messages %}{{'<|im_start|>' + message['role'] + '\n' + message['content']
|
| 35 |
"clean_up_tokenization_spaces": false,
|
| 36 |
"eos_token": "<|endoftext|>",
|
| 37 |
"errors": "replace",
|
|
|
|
| 26 |
"special": true
|
| 27 |
}
|
| 28 |
},
|
| 29 |
+
"additional_special_tokens": ["<|im_start|>", "<|im_end|>"],
|
|
|
|
|
|
|
|
|
|
| 30 |
"bos_token": null,
|
| 31 |
+
"chat_template": "{% for message in messages %}{% if loop.first and messages[0]['role'] != 'system' %}{{ '<|im_start|>system\nYou are a helpful assistant<|im_end|>\n' }}{% endif %}{{'<|im_start|>' + message['role'] + '\n' + message['content']}}{% if (loop.last and add_generation_prompt) or not loop.last %}{{ '<|im_end|>' + '\n'}}{% endif %}{% endfor %}{% if add_generation_prompt and messages[-1]['role'] != 'assistant' %}{{ '<|im_start|>assistant\n' }}{% endif %}",
|
| 32 |
"clean_up_tokenization_spaces": false,
|
| 33 |
"eos_token": "<|endoftext|>",
|
| 34 |
"errors": "replace",
|