Create config.json
Browse files- config.json +11 -0
config.json
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": ["GPT2LMHeadModel"],
|
| 3 |
+
"model_type": "gpt2",
|
| 4 |
+
"tokenizer_class": "GPT2Tokenizer",
|
| 5 |
+
"vocab_size": 50257,
|
| 6 |
+
"n_positions": 1024,
|
| 7 |
+
"n_ctx": 1024,
|
| 8 |
+
"n_embd": 1024,
|
| 9 |
+
"n_layer": 24,
|
| 10 |
+
"n_head": 16
|
| 11 |
+
}
|