Switch from PreTrainedTokenizerFast to GPT2TokenizerFast and add eos_token & bos_token

#15
by loubnabnl HF staff - opened
Files changed (1) hide show
  1. tokenizer_config.json +4 -2
tokenizer_config.json CHANGED
@@ -1,5 +1,7 @@
1
  {
2
  "errors": "replace",
3
- "tokenizer_class": "PreTrainedTokenizerFast",
 
 
4
  "model_max_length": 2048
5
- }
 
1
  {
2
  "errors": "replace",
3
+ "tokenizer_class": "GPT2TokenizerFast",
4
+ "bos_token": "<|endoftext|>",
5
+ "eos_token": "<|endoftext|>",
6
  "model_max_length": 2048
7
+ }