Pengcheng He commited on
Commit
0dab230
1 Parent(s): fd90d80

Add task config

Browse files
Files changed (1) hide show
  1. config.json +13 -0
config.json CHANGED
@@ -1,5 +1,18 @@
1
  {
2
  "num_labels": 3,
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  "model_type": "deberta",
4
  "attention_probs_dropout_prob": 0.1,
5
  "hidden_act": "gelu",
1
  {
2
  "num_labels": 3,
3
+ "architectures": [
4
+ "DebertaForSequenceClassification"
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",
17
  "attention_probs_dropout_prob": 0.1,
18
  "hidden_act": "gelu",