File size: 647 Bytes
b922fdb |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
{
"architectures": [
"ChessForCausalLM"
],
"attention_type": "gqa",
"auto_map": {
"AutoConfig": "model.ChessConfig",
"AutoModelForCausalLM": "model.ChessForCausalLM"
},
"bos_token_id": 1,
"dropout": 0.1,
"dtype": "float32",
"eos_token_id": 2,
"ffn_type": "swiglu",
"layer_norm_epsilon": 1e-05,
"legal_loss_weight": 0.0,
"model_type": "chess_transformer",
"n_ctx": 256,
"n_embd": 144,
"n_head": 4,
"n_inner": 256,
"n_kv_heads": 2,
"n_layer": 7,
"pad_token_id": 0,
"pos_encoding": "rope",
"rope_theta": 10000.0,
"tie_weights": true,
"transformers_version": "4.57.3",
"vocab_size": 148
}
|