Abeehaaa commited on
Commit
fca606c
·
verified ·
1 Parent(s): 8fcd225

Create config.json

Browse files
Files changed (1) hide show
  1. config.json +31 -0
config.json ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": ["LlamaForCausalLM"],
3
+ "model_type": "llama",
4
+ "hidden_size": 2048,
5
+ "intermediate_size": 8192,
6
+ "num_hidden_layers": 16,
7
+ "num_attention_heads": 32,
8
+ "num_key_value_heads": 8,
9
+ "head_dim": 64,
10
+ "hidden_act": "silu",
11
+ "initializer_range": 0.02,
12
+ "max_position_embeddings": 131072,
13
+ "attention_dropout": 0.0,
14
+ "attention_bias": false,
15
+ "mlp_bias": false,
16
+ "rope_scaling": {
17
+ "factor": 32.0,
18
+ "high_freq_factor": 4.0,
19
+ "low_freq_factor": 1.0,
20
+ "original_max_position_embeddings": 8192,
21
+ "rope_type": "llama3"
22
+ },
23
+ "rope_theta": 500000.0,
24
+ "rms_norm_eps": 1e-05,
25
+ "tie_word_embeddings": true,
26
+ "vocab_size": 128256,
27
+ "bos_token_id": 128000,
28
+ "eos_token_id": 128009,
29
+ "torch_dtype": "bfloat16",
30
+ "use_cache": true
31
+ }