retronic commited on
Commit
67cb2dd
·
verified ·
1 Parent(s): b081ebd

Create config.json

Browse files
Files changed (1) hide show
  1. config.json +19 -0
config.json ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": ["LlamaForCausalLM"],
3
+ "model_type": "llama",
4
+ "hidden_size": 8192,
5
+ "intermediate_size": 22016,
6
+ "num_attention_heads": 64,
7
+ "num_hidden_layers": 80,
8
+ "rms_norm_eps": 1e-5,
9
+ "max_position_embeddings": 8192,
10
+ "torch_dtype": "bfloat16",
11
+ "vocab_size": 128256,
12
+ "bos_token_id": 1,
13
+ "eos_token_id": 2,
14
+ "pad_token_id": 0,
15
+ "rope_theta": 10000.0,
16
+ "tie_word_embeddings": false,
17
+ "use_cache": true,
18
+ "hidden_act": "silu"
19
+ }