Update config.json
Browse files- config.json +16 -0
config.json
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"vocab_size": 30522,
|
| 3 |
+
"max_position_embeddings": 512,
|
| 4 |
+
"sinusoidal_pos_embds": true,
|
| 5 |
+
"n_layers": 6,
|
| 6 |
+
"n_heads": 12,
|
| 7 |
+
"dim": 768,
|
| 8 |
+
"hidden_dim": 3072,
|
| 9 |
+
"dropout": 0.1,
|
| 10 |
+
"attention_dropout": 0.1,
|
| 11 |
+
"activation": "gelu",
|
| 12 |
+
"initializer_range": 0.02,
|
| 13 |
+
"tie_weights_": true,
|
| 14 |
+
"seq_classif_dropout": 0.2,
|
| 15 |
+
"qa_dropout": 0.1
|
| 16 |
+
}
|