system HF staff commited on
Commit
e9a5dd9
1 Parent(s): 3657fe6

Update config.json

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