logasanjeev commited on
Commit
88ca46a
·
verified ·
1 Parent(s): caa0a26

Update config.json

Browse files
Files changed (1) hide show
  1. config.json +73 -1
config.json CHANGED
@@ -1 +1,73 @@
1
- {"model_name": "bert-base-uncased", "num_labels": 28, "batch_size": 16, "max_length": 128, "epochs": 5, "learning_rate": 2e-05, "weight_decay": 0.01, "focal_loss_alpha": 1, "focal_loss_gamma": 2}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "finetuned_from": "bert-base-uncased",
3
+ "architectures": ["BertForSequenceClassification"],
4
+ "num_labels": 28,
5
+ "problem_type": "multi_label_classification",
6
+ "batch_size": 16,
7
+ "max_length": 128,
8
+ "epochs": 5,
9
+ "learning_rate": 2e-05,
10
+ "weight_decay": 0.01,
11
+ "focal_loss_alpha": 1,
12
+ "focal_loss_gamma": 2,
13
+ "id2label": {
14
+ "0": "admiration",
15
+ "1": "amusement",
16
+ "2": "anger",
17
+ "3": "annoyance",
18
+ "4": "approval",
19
+ "5": "caring",
20
+ "6": "confusion",
21
+ "7": "curiosity",
22
+ "8": "desire",
23
+ "9": "disappointment",
24
+ "10": "disapproval",
25
+ "11": "disgust",
26
+ "12": "embarrassment",
27
+ "13": "excitement",
28
+ "14": "fear",
29
+ "15": "gratitude",
30
+ "16": "grief",
31
+ "17": "joy",
32
+ "18": "love",
33
+ "19": "nervousness",
34
+ "20": "optimism",
35
+ "21": "pride",
36
+ "22": "realization",
37
+ "23": "relief",
38
+ "24": "remorse",
39
+ "25": "sadness",
40
+ "26": "surprise",
41
+ "27": "neutral"
42
+ },
43
+ "label2id": {
44
+ "admiration": 0,
45
+ "amusement": 1,
46
+ "anger": 2,
47
+ "annoyance": 3,
48
+ "approval": 4,
49
+ "caring": 5,
50
+ "confusion": 6,
51
+ "curiosity": 7,
52
+ "desire": 8,
53
+ "disappointment": 9,
54
+ "disapproval": 10,
55
+ "disgust": 11,
56
+ "embarrassment": 12,
57
+ "excitement": 13,
58
+ "fear": 14,
59
+ "gratitude": 15,
60
+ "grief": 16,
61
+ "joy": 17,
62
+ "love": 18,
63
+ "nervousness": 19,
64
+ "optimism": 20,
65
+ "pride": 21,
66
+ "realization": 22,
67
+ "relief": 23,
68
+ "remorse": 24,
69
+ "sadness": 25,
70
+ "surprise": 26,
71
+ "neutral": 27
72
+ }
73
+ }