prijak commited on
Commit
d2df02f
·
verified ·
1 Parent(s): 2cd61d2

create config.json

Browse files
Files changed (1) hide show
  1. config.json +17 -0
config.json ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": ["LlamaForCausalLM"],
3
+ "model_type": "llama",
4
+ "hidden_size": 3200,
5
+ "intermediate_size": 12800,
6
+ "num_attention_heads": 32,
7
+ "num_hidden_layers": 30,
8
+ "max_position_embeddings": 2048,
9
+ "vocab_size": 32000,
10
+ "initializer_range": 0.02,
11
+ "layer_norm_eps": 1e-6,
12
+ "pad_token_id": 0,
13
+ "bos_token_id": 1,
14
+ "eos_token_id": 2,
15
+ "use_cache": true,
16
+ "model_name": "unsloth/Llama-3.2-3B-Instruct"
17
+ }