asi commited on
Commit
09461fc
1 Parent(s): 99fab9d

Add config file

Browse files
Files changed (1) hide show
  1. config.json +24 -0
config.json ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "activation_function": "gelu_new",
3
+ "attn_pdrop": 0.1,
4
+ "bos_token_id": 0,
5
+ "embd_pdrop": 0.1,
6
+ "eos_token_id": 2,
7
+ "pad_token_id": 1,
8
+ "initializer_range": 0.02,
9
+ "layer_norm_epsilon": 1e-05,
10
+ "model_type": "gpt2",
11
+ "n_ctx": 1024,
12
+ "n_embd": 768,
13
+ "n_head": 12,
14
+ "n_inner": null,
15
+ "n_layer": 12,
16
+ "n_positions": 1024,
17
+ "resid_pdrop": 0.1,
18
+ "summary_activation": null,
19
+ "summary_first_dropout": 0.1,
20
+ "summary_proj_to_labels": true,
21
+ "summary_type": "cls_index",
22
+ "summary_use_proj": true,
23
+ "vocab_size": 50000
24
+ }