kiddobellamy commited on
Commit
af217f3
1 Parent(s): 327ad70

Create config.json

Browse files
Files changed (1) hide show
  1. config.json +25 -0
config.json ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model_type": "llama",
3
+ "architectures": ["LlamaForCausalLM"],
4
+ "hidden_size": 8192,
5
+ "intermediate_size": 12288,
6
+ "num_attention_heads": 64,
7
+ "num_hidden_layers": 80,
8
+ "rms_norm_eps": 1e-05,
9
+ "max_position_embeddings": 2048,
10
+ "rope_theta": 500000.0,
11
+ "use_scaled_rope": true,
12
+ "tie_word_embeddings": false,
13
+ "transformers_version": "4.31.0",
14
+ "vocab_size": 128256,
15
+ "bos_token_id": 1,
16
+ "eos_token_id": 2,
17
+ "pad_token_id": 0,
18
+ "initializer_range": 0.02,
19
+ "n_kv_heads": 8,
20
+ "ffn_dim_multiplier": 1.3,
21
+ "multiple_of": 4096,
22
+ "vision_chunk_size": 560,
23
+ "vision_max_num_chunks": 4,
24
+ "vision_num_cross_attention_layers": 20
25
+ }