loubnabnl HF staff commited on
Commit
aec717a
1 Parent(s): 99270a3

Create config.json

Browse files
Files changed (1) hide show
  1. config.json +27 -0
config.json ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "activation_function": "gelu",
3
+ "architectures": [
4
+ "GPTBigCodeForCausalLM"
5
+ ],
6
+ "attention_softmax_in_fp32": true,
7
+ "multi_query": true,
8
+ "resid_pdrop": 0.1,
9
+ "attn_pdrop": 0.1,
10
+ "embd_pdrop": 0.1,
11
+ "bos_token_id": 0,
12
+ "eos_token_id": 0,
13
+ "initializer_range": 0.02,
14
+ "layer_norm_epsilon": 1e-05,
15
+ "model_type": "gpt_bigcode",
16
+ "n_embd": 2048,
17
+ "n_head": 16,
18
+ "n_inner": 8192,
19
+ "n_layer": 24,
20
+ "n_positions": 8192,
21
+ "pad_key_length": true,
22
+ "scale_attn_weights": true,
23
+ "torch_dtype": "float32",
24
+ "transformers_version": "4.28.1",
25
+ "use_cache": true,
26
+ "vocab_size": 49152
27
+ }