Change the value of add_eos_token to false
Browse filesFrom what I can see in the `tokenizer_config.json` of plamo-13b-instruct, it seems better for the value of this option to be false.
https://huggingface.co/pfnet/plamo-13b-instruct/blob/main/tokenizer_config.json#L3
- tokenizer_config.json +1 -1
tokenizer_config.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
{
|
2 |
"add_bos_token": false,
|
3 |
-
"add_eos_token":
|
4 |
"added_tokens_decoder": {
|
5 |
"0": {
|
6 |
"content": "<unk>",
|
|
|
1 |
{
|
2 |
"add_bos_token": false,
|
3 |
+
"add_eos_token": false,
|
4 |
"added_tokens_decoder": {
|
5 |
"0": {
|
6 |
"content": "<unk>",
|