pranavkarra commited on
Commit
7edc035
·
verified ·
1 Parent(s): 70a0587

Update config.json

Browse files
Files changed (1) hide show
  1. config.json +7 -5
config.json CHANGED
@@ -1,15 +1,17 @@
1
  {
2
- "model_type": "tiny_gpt",
3
- "architectures": ["TinyGPTLMHeadModel"],
4
  "vocab_size": 50256,
5
  "hidden_size": 768,
 
6
  "num_attention_heads": 12,
7
  "num_hidden_layers": 5,
8
- "intermediate_size": 3072,
9
  "max_position_embeddings": 1024,
10
  "rms_norm_eps": 1e-6,
11
  "rope_theta": 10000.0,
12
  "attention_dropout": 0.1,
13
- "hidden_dropout": 0.1,
14
- "use_cache": true
 
15
  }
 
1
  {
2
+ "model_type": "llama",
3
+ "architectures": ["LlamaForCausalLM"],
4
  "vocab_size": 50256,
5
  "hidden_size": 768,
6
+ "intermediate_size": 3072,
7
  "num_attention_heads": 12,
8
  "num_hidden_layers": 5,
9
+ "num_key_value_heads": 12,
10
  "max_position_embeddings": 1024,
11
  "rms_norm_eps": 1e-6,
12
  "rope_theta": 10000.0,
13
  "attention_dropout": 0.1,
14
+ "mlp_bias": false,
15
+ "attention_bias": false,
16
+ "tie_word_embeddings": false
17
  }