Update generation_config.json
Browse filesChanged eos_token_id to 131072, which corresponds to "<|im_end|>", to match the value it has in the other files. Added pad_token_id of 10, corresponding to "<pad>", for the same reason.
- generation_config.json +2 -1
generation_config.json
CHANGED
|
@@ -2,6 +2,7 @@
|
|
| 2 |
"_from_model_config": true,
|
| 3 |
"bos_token_id": 1,
|
| 4 |
"do_sample": true,
|
| 5 |
-
"eos_token_id":
|
|
|
|
| 6 |
"transformers_version": "4.46.1"
|
| 7 |
}
|
|
|
|
| 2 |
"_from_model_config": true,
|
| 3 |
"bos_token_id": 1,
|
| 4 |
"do_sample": true,
|
| 5 |
+
"eos_token_id": 131072,
|
| 6 |
+
"pad_token_id": 10,
|
| 7 |
"transformers_version": "4.46.1"
|
| 8 |
}
|