Update config.json
Browse files- config.json +26 -0
config.json
ADDED
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"architectures": ["ElectraForSequenceClassification"],
|
3 |
+
"attention_probs_dropout_prob": 0.1,
|
4 |
+
"embedding_size": 128,
|
5 |
+
"hidden_act": "gelu",
|
6 |
+
"hidden_dropout_prob": 0.1,
|
7 |
+
"hidden_size": 256,
|
8 |
+
"id2label": {
|
9 |
+
"0": "negative",
|
10 |
+
"1": "positive"
|
11 |
+
},
|
12 |
+
"initializer_range": 0.02,
|
13 |
+
"intermediate_size": 1024,
|
14 |
+
"label2id": {
|
15 |
+
"negative": 0,
|
16 |
+
"positive": 1
|
17 |
+
},
|
18 |
+
"layer_norm_eps": 1e-12,
|
19 |
+
"max_position_embeddings": 512,
|
20 |
+
"model_type": "electra",
|
21 |
+
"num_attention_heads": 4,
|
22 |
+
"num_hidden_layers": 12,
|
23 |
+
"pad_token_id": 0,
|
24 |
+
"type_vocab_size": 2,
|
25 |
+
"vocab_size": 30522
|
26 |
+
}
|