jkgl commited on
Commit
afd5b51
·
verified ·
1 Parent(s): aee918a

Upload tokenizer config

Browse files
Files changed (1) hide show
  1. tokenizer_config.json +14 -0
tokenizer_config.json ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "vocab_size": 101,
3
+ "model_max_length": 1024,
4
+ "padding_side": "right",
5
+ "clean_up_tokenization_spaces": false,
6
+ "bos_token": "<s>",
7
+ "eos_token": "</s>",
8
+ "pad_token": "[PAD]",
9
+ "unk_token": null,
10
+ "additional_special_tokens": [
11
+ "[INST]",
12
+ "[/INST]"
13
+ ]
14
+ }