Shoriful025 commited on
Commit
b71e743
·
verified ·
1 Parent(s): 901458a

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": [
3
+ "GPT2LMHeadModel"
4
+ ],
5
+ "activation_function": "gelu_new",
6
+ "n_ctx": 1024,
7
+ "n_embd": 768,
8
+ "n_head": 12,
9
+ "n_layer": 6,
10
+ "n_positions": 1024,
11
+ "model_type": "gpt2",
12
+ "resid_pdrop": 0.1,
13
+ "embd_pdrop": 0.1,
14
+ "attn_pdrop": 0.1,
15
+ "layer_norm_epsilon": 1e-05,
16
+ "initializer_range": 0.02,
17
+ "summary_type": "cls_index",
18
+ "vocab_size": 50257,
19
+ "bos_token_id": 50256,
20
+ "eos_token_id": 50256
21
+ }