GeminiFan207 commited on
Commit
39bb318
·
verified ·
1 Parent(s): b98e216

Create config.json

Browse files
Files changed (1) hide show
  1. config.json +21 -0
config.json ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": ["MistralForCausalLM"],
3
+ "model_type": "mistral",
4
+ "hidden_size": 4096,
5
+ "intermediate_size": 14336,
6
+ "num_attention_heads": 32,
7
+ "num_hidden_layers": 8,
8
+ "tie_word_embeddings": false,
9
+ "vocab_size": 32000,
10
+ "max_position_embeddings": 4096,
11
+ "attention_dropout": 0.1,
12
+ "hidden_dropout": 0.1,
13
+ "initializer_range": 0.02,
14
+ "layer_norm_eps": 1e-5,
15
+ "use_cache": true,
16
+ "pad_token_id": 0,
17
+ "bos_token_id": 1,
18
+ "eos_token_id": 2,
19
+ "torch_dtype": "bfloat16",
20
+ "transformers_version": "4.38.1"
21
+ }