Kalaphant commited on
Commit
7e92e00
·
verified ·
1 Parent(s): 590bd20

Update config.json

Browse files
Files changed (1) hide show
  1. config.json +30 -0
config.json CHANGED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model_type": "gpt2",
3
+ "vocab_size": 50257,
4
+ "n_positions": 1024,
5
+ "n_ctx": 1024,
6
+ "n_embd": 768,
7
+ "n_layer": 12,
8
+ "n_head": 12,
9
+ "n_inner": null,
10
+ "activation_function": "gelu_new",
11
+ "resid_pdrop": 0.1,
12
+ "embd_pdrop": 0.1,
13
+ "attn_pdrop": 0.1,
14
+ "layer_norm_epsilon": 1e-5,
15
+ "initializer_range": 0.02,
16
+ "summary_type": "cls_index",
17
+ "summary_use_proj": true,
18
+ "summary_activation": null,
19
+ "summary_proj_to_labels": true,
20
+ "summary_first_dropout": 0.1,
21
+ "scale_attn_weights": true,
22
+ "bos_token_id": 50256,
23
+ "eos_token_id": 50256,
24
+ "architectures": [
25
+ "GPT2LMHeadModel"
26
+ ],
27
+ "tokenizer_class": "GPT2Tokenizer",
28
+ "pad_token_id": 50256,
29
+ "transformers_version": "4.0.0"
30
+ }