config file
Browse files- config.json +30 -0
config.json
ADDED
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "data/distilgpt2-e6/checkpoint.pth",
|
3 |
+
"activation_function": "gelu_new",
|
4 |
+
"attn_pdrop": 0.1,
|
5 |
+
"bos_token_id": 50256,
|
6 |
+
"embd_pdrop": 0.1,
|
7 |
+
"eos_token_id": 50256,
|
8 |
+
"initializer_range": 0.02,
|
9 |
+
"layer_norm_epsilon": 1e-05,
|
10 |
+
"model_type": "gpt2",
|
11 |
+
"n_ctx": 1024,
|
12 |
+
"n_embd": 1024,
|
13 |
+
"n_head": 16,
|
14 |
+
"n_inner": null,
|
15 |
+
"n_layer": 6,
|
16 |
+
"n_positions": 1024,
|
17 |
+
"output_hidden_states": true,
|
18 |
+
"reorder_and_upcast_attn": false,
|
19 |
+
"resid_pdrop": 0.1,
|
20 |
+
"scale_attn_by_inverse_layer_idx": false,
|
21 |
+
"scale_attn_weights": true,
|
22 |
+
"summary_activation": null,
|
23 |
+
"summary_first_dropout": 0.1,
|
24 |
+
"summary_proj_to_labels": true,
|
25 |
+
"summary_type": "cls_index",
|
26 |
+
"summary_use_proj": true,
|
27 |
+
"transformers_version": "4.15.0",
|
28 |
+
"use_cache": true,
|
29 |
+
"vocab_size": 32000
|
30 |
+
}
|