Ozaii commited on
Commit
cb50f12
1 Parent(s): 34c2f4f

Update config.json

Browse files
Files changed (1) hide show
  1. config.json +29 -6
config.json CHANGED
@@ -4,12 +4,35 @@
4
  ],
5
  "model_type": "causal_lm",
6
  "n_ctx": 1024,
7
- "n_embd": 768,
8
- "n_head": 12,
9
- "n_layer": 12,
10
- "vocab_size": 50257,
11
- "tokenizer_class": "AutoTokenizer",
12
  "special_tokens_map_file": "special_tokens_map.json",
13
  "tokenizer_config_file": "tokenizer_config.json",
14
- "name_or_path": "Ozaii/W.AI-13B-Chat"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
  }
 
4
  ],
5
  "model_type": "causal_lm",
6
  "n_ctx": 1024,
7
+ "n_embd": 4096,
8
+ "n_head": 32,
9
+ "n_layer": 32,
10
+ "vocab_size": 32000,
11
+ "tokenizer_class": "PreTrainedTokenizerFast",
12
  "special_tokens_map_file": "special_tokens_map.json",
13
  "tokenizer_config_file": "tokenizer_config.json",
14
+ "name_or_path": "Ozaii/W.AI-13B-Chat",
15
+ "hidden_size": 4096,
16
+ "num_attention_heads": 32,
17
+ "num_hidden_layers": 32,
18
+ "intermediate_size": 16384,
19
+ "initializer_range": 0.02,
20
+ "layer_norm_eps": 1e-5,
21
+ "max_position_embeddings": 2048,
22
+ "use_cache": false,
23
+ "bos_token_id": 0,
24
+ "eos_token_id": 2,
25
+ "pad_token_id": 1,
26
+ "gradient_checkpointing": true,
27
+ "task_type": "CAUSAL_LM",
28
+ "r": 64,
29
+ "lora_alpha": 16,
30
+ "lora_dropout": 0.1,
31
+ "bias": "none",
32
+ "target_modules": [
33
+ "q_proj",
34
+ "o_proj",
35
+ "v_proj",
36
+ "k_proj"
37
+ ]
38
  }