adowu commited on
Commit
17c5c85
1 Parent(s): 176260f

Update config.json

Browse files
Files changed (1) hide show
  1. config.json +19 -26
config.json CHANGED
@@ -1,33 +1,26 @@
1
  {
2
- "alibi": false,
3
- "apply_residual_connection_post_layernorm": false,
4
  "architectures": [
5
- "FalconForCausalLM"
6
  ],
7
  "attention_dropout": 0.0,
8
- "auto_map": {
9
- "AutoConfig": "configuration_falcon.FalconConfig",
10
- "AutoModel": "modeling_falcon.FalconModel",
11
- "AutoModelForSequenceClassification": "modeling_falcon.FalconForSequenceClassification",
12
- "AutoModelForTokenClassification": "modeling_falcon.FalconForTokenClassification",
13
- "AutoModelForQuestionAnswering": "modeling_falcon.FalconForQuestionAnswering",
14
- "AutoModelForCausalLM": "modeling_falcon.FalconForCausalLM"
15
- },
16
- "bias": false,
17
- "bos_token_id": 11,
18
- "eos_token_id": 11,
19
- "hidden_dropout": 0.0,
20
- "hidden_size": 8192,
21
  "initializer_range": 0.02,
22
- "layer_norm_epsilon": 1e-05,
23
- "model_type": "falcon",
24
- "new_decoder_architecture": true,
25
- "num_attention_heads": 128,
26
- "num_hidden_layers": 60,
27
- "num_kv_heads": 8,
28
- "parallel_attn": true,
 
 
 
29
  "torch_dtype": "bfloat16",
30
- "transformers_version": "4.27.4",
31
  "use_cache": true,
32
- "vocab_size": 65024
33
- }
 
1
  {
2
+ "_name_or_path": "HuggingFaceH4/mistral-7b-anthropic",
 
3
  "architectures": [
4
+ "MistralForCausalLM"
5
  ],
6
  "attention_dropout": 0.0,
7
+ "bos_token_id": 1,
8
+ "eos_token_id": 2,
9
+ "hidden_act": "silu",
10
+ "hidden_size": 4096,
 
 
 
 
 
 
 
 
 
11
  "initializer_range": 0.02,
12
+ "intermediate_size": 14336,
13
+ "max_position_embeddings": 32768,
14
+ "model_type": "mistral",
15
+ "num_attention_heads": 32,
16
+ "num_hidden_layers": 32,
17
+ "num_key_value_heads": 8,
18
+ "rms_norm_eps": 1e-05,
19
+ "rope_theta": 10000.0,
20
+ "sliding_window": 4096,
21
+ "tie_word_embeddings": false,
22
  "torch_dtype": "bfloat16",
23
+ "transformers_version": "4.39.3",
24
  "use_cache": true,
25
+ "vocab_size": 32002
26
+ }