LastTransformer commited on
Commit
84b499d
·
verified ·
1 Parent(s): 730ef6f

Upload tokenizer_config.json with huggingface_hub

Browse files
Files changed (1) hide show
  1. tokenizer_config.json +8 -6
tokenizer_config.json CHANGED
@@ -1,8 +1,10 @@
1
  {
2
- "add_bos_token": false,
3
- "add_eos_token": false,
4
- "sp_model_kwargs": {},
5
- "tokenizer_class": "SentencePieceTokenizer",
6
  "model_max_length": 4096,
7
- "vocab_size": 16000
8
- }
 
 
 
1
  {
2
+ "backend": "tokenizers",
3
+ "bos_token": "[BOS]",
4
+ "eos_token": "[EOS]",
5
+ "mask_token": "[MASK]",
6
  "model_max_length": 4096,
7
+ "pad_token": "[PAD]",
8
+ "tokenizer_class": "TokenizersBackend",
9
+ "unk_token": "[UNK]"
10
+ }