Update config.json
Browse files- config.json +7 -5
config.json
CHANGED
|
@@ -1,15 +1,17 @@
|
|
| 1 |
{
|
| 2 |
-
"model_type": "
|
| 3 |
-
"architectures": ["
|
| 4 |
"vocab_size": 50256,
|
| 5 |
"hidden_size": 768,
|
|
|
|
| 6 |
"num_attention_heads": 12,
|
| 7 |
"num_hidden_layers": 5,
|
| 8 |
-
"
|
| 9 |
"max_position_embeddings": 1024,
|
| 10 |
"rms_norm_eps": 1e-6,
|
| 11 |
"rope_theta": 10000.0,
|
| 12 |
"attention_dropout": 0.1,
|
| 13 |
-
"
|
| 14 |
-
"
|
|
|
|
| 15 |
}
|
|
|
|
| 1 |
{
|
| 2 |
+
"model_type": "llama",
|
| 3 |
+
"architectures": ["LlamaForCausalLM"],
|
| 4 |
"vocab_size": 50256,
|
| 5 |
"hidden_size": 768,
|
| 6 |
+
"intermediate_size": 3072,
|
| 7 |
"num_attention_heads": 12,
|
| 8 |
"num_hidden_layers": 5,
|
| 9 |
+
"num_key_value_heads": 12,
|
| 10 |
"max_position_embeddings": 1024,
|
| 11 |
"rms_norm_eps": 1e-6,
|
| 12 |
"rope_theta": 10000.0,
|
| 13 |
"attention_dropout": 0.1,
|
| 14 |
+
"mlp_bias": false,
|
| 15 |
+
"attention_bias": false,
|
| 16 |
+
"tie_word_embeddings": false
|
| 17 |
}
|