Upload config.json
Browse files- config.json +43 -0
config.json
ADDED
@@ -0,0 +1,43 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"num_labels": 3,
|
3 |
+
"architectures": [
|
4 |
+
"DebertaV2ForSequenceClassification"
|
5 |
+
],
|
6 |
+
"id2label": {
|
7 |
+
"0": "CONTRADICTION",
|
8 |
+
"1": "NEUTRAL",
|
9 |
+
"2": "ENTAILMENT"
|
10 |
+
},
|
11 |
+
"label2id": {
|
12 |
+
"CONTRADICTION": 0,
|
13 |
+
"NEUTRAL": 1,
|
14 |
+
"ENTAILMENT": 2
|
15 |
+
},
|
16 |
+
"model_type": "deberta-v2",
|
17 |
+
"attention_probs_dropout_prob": 0.1,
|
18 |
+
"hidden_act": "gelu",
|
19 |
+
"hidden_dropout_prob": 0.1,
|
20 |
+
"hidden_size": 1536,
|
21 |
+
"initializer_range": 0.02,
|
22 |
+
"intermediate_size": 6144,
|
23 |
+
"max_position_embeddings": 512,
|
24 |
+
"relative_attention": true,
|
25 |
+
"position_buckets": 256,
|
26 |
+
"norm_rel_ebd": "layer_norm",
|
27 |
+
"share_att_key": true,
|
28 |
+
"pos_att_type": "p2c|c2p",
|
29 |
+
"layer_norm_eps": 1e-7,
|
30 |
+
"conv_kernel_size": 3,
|
31 |
+
"conv_act": "gelu",
|
32 |
+
"max_relative_positions": -1,
|
33 |
+
"position_biased_input": false,
|
34 |
+
"num_attention_heads": 24,
|
35 |
+
"attention_head_size": 64,
|
36 |
+
"num_hidden_layers": 48,
|
37 |
+
"type_vocab_size": 0,
|
38 |
+
"vocab_size": 128100,
|
39 |
+
"pooling": {
|
40 |
+
"dropout": 0,
|
41 |
+
"hidden_act": "gelu"
|
42 |
+
}
|
43 |
+
}
|