kk497055 commited on
Commit
2142e95
·
verified ·
1 Parent(s): 74545eb

Add correct Mixtral config.json for lm-eval

Browse files
Files changed (1) hide show
  1. config.json +18 -0
config.json ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "MixtralForCausalLM"
4
+ ],
5
+ "model_type": "mixtral",
6
+ "hidden_size": 4096,
7
+ "intermediate_size": 14336,
8
+ "max_position_embeddings": 32768,
9
+ "num_attention_heads": 32,
10
+ "num_hidden_layers": 32,
11
+ "num_key_value_heads": 8,
12
+ "num_local_experts": 8,
13
+ "num_experts_per_tok": 2,
14
+ "rms_norm_eps": 1e-05,
15
+ "rope_theta": 1000000.0,
16
+ "torch_dtype": "bfloat16",
17
+ "vocab_size": 32000
18
+ }