Upload tokenizer_config.json with huggingface_hub
Browse files- tokenizer_config.json +23 -0
tokenizer_config.json
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"tokenizer_class": "ChessTokenizer",
|
| 3 |
+
"vocab_size": 1200,
|
| 4 |
+
"model_max_length": 256,
|
| 5 |
+
"bos_token": "[BOS]",
|
| 6 |
+
"eos_token": "[EOS]",
|
| 7 |
+
"pad_token": "[PAD]",
|
| 8 |
+
"unk_token": "[UNK]",
|
| 9 |
+
"vocab_file": "vocab.json",
|
| 10 |
+
"vocab_files_names": {
|
| 11 |
+
"vocab_file": "vocab.json"
|
| 12 |
+
},
|
| 13 |
+
"auto_map": {
|
| 14 |
+
"AutoTokenizer": [
|
| 15 |
+
"tokenizer.ChessTokenizer",
|
| 16 |
+
null
|
| 17 |
+
],
|
| 18 |
+
"AutoModelForCausalLM": [
|
| 19 |
+
"model.ChessForCausalLM",
|
| 20 |
+
null
|
| 21 |
+
]
|
| 22 |
+
}
|
| 23 |
+
}
|