system HF staff commited on
Commit
8866d1c
1 Parent(s): 9b578f7

Update config.json

Browse files
Files changed (1) hide show
  1. config.json +80 -0
config.json ADDED
@@ -0,0 +1,80 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "BertForMultiLabelClassification"
4
+ ],
5
+ "attention_probs_dropout_prob": 0.1,
6
+ "finetuning_task": "goemotions",
7
+ "hidden_act": "gelu",
8
+ "hidden_dropout_prob": 0.1,
9
+ "hidden_size": 768,
10
+ "id2label": {
11
+ "0": "admiration",
12
+ "1": "amusement",
13
+ "10": "disapproval",
14
+ "11": "disgust",
15
+ "12": "embarrassment",
16
+ "13": "excitement",
17
+ "14": "fear",
18
+ "15": "gratitude",
19
+ "16": "grief",
20
+ "17": "joy",
21
+ "18": "love",
22
+ "19": "nervousness",
23
+ "2": "anger",
24
+ "20": "optimism",
25
+ "21": "pride",
26
+ "22": "realization",
27
+ "23": "relief",
28
+ "24": "remorse",
29
+ "25": "sadness",
30
+ "26": "surprise",
31
+ "27": "neutral",
32
+ "3": "annoyance",
33
+ "4": "approval",
34
+ "5": "caring",
35
+ "6": "confusion",
36
+ "7": "curiosity",
37
+ "8": "desire",
38
+ "9": "disappointment"
39
+ },
40
+ "initializer_range": 0.02,
41
+ "intermediate_size": 3072,
42
+ "label2id": {
43
+ "admiration": 0,
44
+ "amusement": 1,
45
+ "anger": 2,
46
+ "annoyance": 3,
47
+ "approval": 4,
48
+ "caring": 5,
49
+ "confusion": 6,
50
+ "curiosity": 7,
51
+ "desire": 8,
52
+ "disappointment": 9,
53
+ "disapproval": 10,
54
+ "disgust": 11,
55
+ "embarrassment": 12,
56
+ "excitement": 13,
57
+ "fear": 14,
58
+ "gratitude": 15,
59
+ "grief": 16,
60
+ "joy": 17,
61
+ "love": 18,
62
+ "nervousness": 19,
63
+ "neutral": 27,
64
+ "optimism": 20,
65
+ "pride": 21,
66
+ "realization": 22,
67
+ "relief": 23,
68
+ "remorse": 24,
69
+ "sadness": 25,
70
+ "surprise": 26
71
+ },
72
+ "layer_norm_eps": 1e-12,
73
+ "max_position_embeddings": 512,
74
+ "model_type": "bert",
75
+ "num_attention_heads": 12,
76
+ "num_hidden_layers": 12,
77
+ "pad_token_id": 0,
78
+ "type_vocab_size": 2,
79
+ "vocab_size": 28996
80
+ }