Ozaii commited on
Commit
ef16345
1 Parent(s): cb50f12

Update config.json

Browse files
Files changed (1) hide show
  1. config.json +21 -31
config.json CHANGED
@@ -1,38 +1,28 @@
1
  {
2
  "architectures": [
3
- "AutoModelForCausalLM"
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
  }
 
1
  {
2
  "architectures": [
3
+ "LlamaForCausalLM"
4
  ],
5
+ "model_type": "llama",
6
+ "attention_bias": false,
7
+ "attention_dropout": 0.0,
8
+ "bos_token_id": 128000,
9
+ "eos_token_id": 128001,
10
+ "hidden_act": "silu",
 
 
 
 
11
  "hidden_size": 4096,
12
+ "initializer_range": 0.02,
13
+ "intermediate_size": 14336,
14
+ "max_position_embeddings": 8192,
15
+ "model_type": "llama",
16
  "num_attention_heads": 32,
17
  "num_hidden_layers": 32,
18
+ "num_key_value_heads": 8,
19
+ "pretraining_tp": 1,
20
+ "rms_norm_eps": 1e-05,
21
+ "rope_scaling": null,
22
+ "rope_theta": 500000.0,
23
+ "tie_word_embeddings": false,
24
+ "torch_dtype": "bfloat16",
25
+ "transformers_version": "4.41.0",
26
+ "use_cache": true,
27
+ "vocab_size": 128256
 
 
 
 
 
 
 
 
 
 
28
  }