Upload config.json
#2
by
ht557
- opened
- config.json +18 -0
config.json
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": ["LLaMAForCausalLM"],
|
| 3 |
+
"model_type": "llama",
|
| 4 |
+
"vocab_size": 128000,
|
| 5 |
+
"hidden_size": 4096,
|
| 6 |
+
"num_hidden_layers": 32,
|
| 7 |
+
"num_attention_heads": 32,
|
| 8 |
+
"intermediate_size": 11008,
|
| 9 |
+
"max_position_embeddings": 2048,
|
| 10 |
+
"layer_norm_eps": 1e-5,
|
| 11 |
+
"initializer_range": 0.02,
|
| 12 |
+
"hidden_act": "gelu",
|
| 13 |
+
"rope_scaling": {
|
| 14 |
+
"type": "linear",
|
| 15 |
+
"factor": 1.1
|
| 16 |
+
},
|
| 17 |
+
"use_cache": true
|
| 18 |
+
}
|