File size: 396 Bytes
500f774 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
{
"architectures": [
"CustomGPT"
],
"auto_map": {
"AutoConfig": "configuration_gpt.CustomGPTConfig",
"AutoModelForCausalLM": "modeling_gpt.CustomGPT"
},
"block_size": 768,
"dropout": 0.1,
"model_type": "custom_gpt",
"n_embd": 768,
"n_head": 8,
"n_layer": 8,
"torch_dtype": "float32",
"transformers_version": "4.48.3",
"vocab_size": 50257
}
|