Chess Challenge submission by Oceane28
Browse files- config.json +4 -0
- tokenizer_config.json +6 -0
config.json
CHANGED
|
@@ -2,6 +2,10 @@
|
|
| 2 |
"architectures": [
|
| 3 |
"ChessForCausalLM"
|
| 4 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
"bos_token_id": 1,
|
| 6 |
"dropout": 0.1,
|
| 7 |
"dtype": "float32",
|
|
|
|
| 2 |
"architectures": [
|
| 3 |
"ChessForCausalLM"
|
| 4 |
],
|
| 5 |
+
"auto_map": {
|
| 6 |
+
"AutoConfig": "model.ChessConfig",
|
| 7 |
+
"AutoModelForCausalLM": "model.ChessForCausalLM"
|
| 8 |
+
},
|
| 9 |
"bos_token_id": 1,
|
| 10 |
"dropout": 0.1,
|
| 11 |
"dtype": "float32",
|
tokenizer_config.json
CHANGED
|
@@ -33,6 +33,12 @@
|
|
| 33 |
"special": true
|
| 34 |
}
|
| 35 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 36 |
"bos_token": "[BOS]",
|
| 37 |
"clean_up_tokenization_spaces": false,
|
| 38 |
"eos_token": "[EOS]",
|
|
|
|
| 33 |
"special": true
|
| 34 |
}
|
| 35 |
},
|
| 36 |
+
"auto_map": {
|
| 37 |
+
"AutoTokenizer": [
|
| 38 |
+
"tokenizer.ChessTokenizer",
|
| 39 |
+
null
|
| 40 |
+
]
|
| 41 |
+
},
|
| 42 |
"bos_token": "[BOS]",
|
| 43 |
"clean_up_tokenization_spaces": false,
|
| 44 |
"eos_token": "[EOS]",
|