amaliakrn commited on
Commit
73bbbd5
1 Parent(s): c3192c2

Upload config.json

Browse files
Files changed (1) hide show
  1. config.json +25 -0
config.json ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "GPT2LMHeadModel"
4
+ ],
5
+ "model_type": "gpt2",
6
+ "n_embd": 768,
7
+ "n_layer": 12,
8
+ "n_head": 12,
9
+ "vocab_size": 50257,
10
+ "n_positions": 1024,
11
+ "n_ctx": 1024,
12
+ "activation_function": "gelu",
13
+ "initializer_range": 0.02,
14
+ "layer_norm_epsilon": 1e-05,
15
+ "attn_pdrop": 0.1,
16
+ "embd_pdrop": 0.1,
17
+ "resid_pdrop": 0.1,
18
+ "summary_activation": null,
19
+ "summary_proj_to_labels": true,
20
+ "summary_first_dropout": 0.1,
21
+ "gradient_checkpointing": false,
22
+ "use_cache": true,
23
+ "scale_attn_weights": true,
24
+ "reorder_and_upcast_attn": false
25
+ }