yezdata commited on
Commit
a4aef80
·
verified ·
1 Parent(s): 5e8f55d

Upload config.json

Browse files
Files changed (1) hide show
  1. config.json +70 -0
config.json ADDED
@@ -0,0 +1,70 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "vocab_size": 50368,
3
+ "d_model": 768,
4
+ "n_head": 12,
5
+ "n_layers": 6,
6
+ "d_ffn": 2048,
7
+ "dropout": 0.1,
8
+ "num_labels": 28,
9
+ "id2label": {
10
+ "0": "admiration",
11
+ "1": "amusement",
12
+ "2": "anger",
13
+ "3": "annoyance",
14
+ "4": "approval",
15
+ "5": "caring",
16
+ "6": "confusion",
17
+ "7": "curiosity",
18
+ "8": "desire",
19
+ "9": "disappointment",
20
+ "10": "disapproval",
21
+ "11": "disgust",
22
+ "12": "embarrassment",
23
+ "13": "excitement",
24
+ "14": "fear",
25
+ "15": "gratitude",
26
+ "16": "grief",
27
+ "17": "joy",
28
+ "18": "love",
29
+ "19": "nervousness",
30
+ "20": "optimism",
31
+ "21": "pride",
32
+ "22": "realization",
33
+ "23": "relief",
34
+ "24": "remorse",
35
+ "25": "sadness",
36
+ "26": "surprise",
37
+ "27": "neutral"
38
+ },
39
+ "label2id": {
40
+ "admiration": 0,
41
+ "amusement": 1,
42
+ "anger": 2,
43
+ "annoyance": 3,
44
+ "approval": 4,
45
+ "caring": 5,
46
+ "confusion": 6,
47
+ "curiosity": 7,
48
+ "desire": 8,
49
+ "disappointment": 9,
50
+ "disapproval": 10,
51
+ "disgust": 11,
52
+ "embarrassment": 12,
53
+ "excitement": 13,
54
+ "fear": 14,
55
+ "gratitude": 15,
56
+ "grief": 16,
57
+ "joy": 17,
58
+ "love": 18,
59
+ "nervousness": 19,
60
+ "optimism": 20,
61
+ "pride": 21,
62
+ "realization": 22,
63
+ "relief": 23,
64
+ "remorse": 24,
65
+ "sadness": 25,
66
+ "surprise": 26,
67
+ "neutral": 27
68
+ },
69
+ "base_encoder_path": "models/v2/pretrain/epoch_1"
70
+ }