WerddMana commited on
Commit
9a35777
1 Parent(s): 1948e56

Create config.json

Browse files
Files changed (1) hide show
  1. config.json +19 -0
config.json ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model_type": "gpt2",
3
+ "vocab_size": 50257,
4
+ "n_positions": 2048,
5
+ "n_ctx": 2048,
6
+ "n_embd": 768,
7
+ "n_layer": 12,
8
+ "n_head": 12,
9
+ "activation_function": "gelu_new",
10
+ "resid_pdrop": 0.1,
11
+ "embd_pdrop": 0.1,
12
+ "attn_pdrop": 0.1,
13
+ "layer_norm_epsilon": 1e-5,
14
+ "initializer_range": 0.02,
15
+ "bos_token_id": 50256,
16
+ "eos_token_id": 50256,
17
+ "pad_token_id": 50256,
18
+ "use_cache": true
19
+ }