Create config.json
Browse files- config.json +13 -0
config.json
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"n_layers": 6,
|
3 |
+
"d_model": 128,
|
4 |
+
"d_head": 64,
|
5 |
+
"n_heads": 8,
|
6 |
+
"d_mlp": 512,
|
7 |
+
"d_vocab": 61,
|
8 |
+
"n_ctx": 59,
|
9 |
+
"act_fn": "gelu",
|
10 |
+
"normalization_type": "LN",
|
11 |
+
"att_only": false,
|
12 |
+
"architecture": "mingpt"
|
13 |
+
}
|