Commit
•
d016f99
1
Parent(s):
77d35c0
Create config.json
Browse files- config.json +18 -0
config.json
ADDED
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"activation_function": "gelu_new",
|
3 |
+
"architectures": [
|
4 |
+
"GPT2LMHeadModel"
|
5 |
+
],
|
6 |
+
"attn_pdrop": 0.1,
|
7 |
+
"embd_pdrop": 0.1,
|
8 |
+
"bos_token_id": 0,
|
9 |
+
"eos_token_id": 0,
|
10 |
+
"initializer_range": 0.02,
|
11 |
+
"layer_norm_epsilon": 1e-05,
|
12 |
+
"model_type": "gpt2",
|
13 |
+
"n_embd": 6144,
|
14 |
+
"n_head": 64,
|
15 |
+
"n_layer": 44,
|
16 |
+
"resid_pdrop": 0.1,
|
17 |
+
"vocab_size": 50432
|
18 |
+
}
|