Create config.json
Browse files- config.json +15 -0
config.json
ADDED
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"vocab_size": 49152,
|
3 |
+
"hidden_size": 576,
|
4 |
+
"intermediate_size": 1536,
|
5 |
+
"num_hidden_layers": 30,
|
6 |
+
"num_attention_heads": 9,
|
7 |
+
"num_key_value_heads": 3,
|
8 |
+
"max_position_embeddings": 2048,
|
9 |
+
"rms_norm_eps": 1e-5,
|
10 |
+
"rope_theta": 10000.0,
|
11 |
+
"pad_token_id": 0,
|
12 |
+
"bos_token_id": 0,
|
13 |
+
"eos_token_id": 0,
|
14 |
+
"model_type": "causal_lm"
|
15 |
+
}
|