Upload config.json
Browse files- config.json +27 -0
config.json
ADDED
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"architectures": [
|
3 |
+
"StableLMAlphaForCausalLM"
|
4 |
+
],
|
5 |
+
"auto_map": {
|
6 |
+
"AutoConfig": "configuration_stablelm_alpha.StableLMAlphaConfig",
|
7 |
+
"AutoModelForCausalLM": "modeling_stablelm_alpha.StableLMAlphaForCausalLM"
|
8 |
+
},
|
9 |
+
"bos_token_id": 0,
|
10 |
+
"eos_token_id": 0,
|
11 |
+
"hidden_act": "silu",
|
12 |
+
"hidden_size": 4096,
|
13 |
+
"initializer_range": 0.02,
|
14 |
+
"max_position_embeddings": 4096,
|
15 |
+
"model_type": "stablelm_alpha",
|
16 |
+
"norm_eps": 1e-05,
|
17 |
+
"num_heads": 32,
|
18 |
+
"num_hidden_layers": 32,
|
19 |
+
"rotary_emb_base": 10000,
|
20 |
+
"rotary_pct": 0.25,
|
21 |
+
"rotary_scaling_factor": 1.0,
|
22 |
+
"tie_word_embeddings": false,
|
23 |
+
"torch_dtype": "float32",
|
24 |
+
"transformers_version": "4.30.2",
|
25 |
+
"use_cache": true,
|
26 |
+
"vocab_size": 50432
|
27 |
+
}
|