ViorikaAI commited on
Commit
fa43a52
·
verified ·
1 Parent(s): a393da9

Create config.json

Browse files
Files changed (1) hide show
  1. config.json +23 -0
config.json ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": ["GPT2LMHeadModel"],
3
+ "model_type": "gpt2",
4
+ "vocab_size": 50000,
5
+ "n_positions": 2048,
6
+ "n_ctx": 2048,
7
+ "n_embd": 1024,
8
+ "n_layer": 16,
9
+ "n_head": 16,
10
+ "intermediate_size": 3072,
11
+ "activation_function": "gelu_new",
12
+ "resid_pdrop": 0.1,
13
+ "embd_pdrop": 0.1,
14
+ "attn_pdrop": 0.1,
15
+ "layer_norm_epsilon": 1e-5,
16
+ "initializer_range": 0.02,
17
+ "bos_token_id": 0,
18
+ "eos_token_id": 2,
19
+ "pad_token_id": 1,
20
+ "gradient_checkpointing": false,
21
+ "use_cache": true,
22
+ "num_experts": 0
23
+ }