Datasets:

Modalities:
Text
Formats:
parquet
Languages:
English
Libraries:
Datasets
pandas
License:
SkyWater21 commited on
Commit
c7b9ee6
·
1 Parent(s): 5fe4a0c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +150 -1
README.md CHANGED
@@ -1,3 +1,152 @@
1
  ---
2
- license: apache-2.0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: cc-by-4.0
3
+ dataset_info:
4
+ config_name: simplified_ekman
5
+ features:
6
+ - name: text
7
+ dtype: string
8
+ - name: labels
9
+ sequence:
10
+ class_label:
11
+ names:
12
+ '0': admiration
13
+ '1': amusement
14
+ '2': anger
15
+ '3': annoyance
16
+ '4': approval
17
+ '5': caring
18
+ '6': confusion
19
+ '7': curiosity
20
+ '8': desire
21
+ '9': disappointment
22
+ '10': disapproval
23
+ '11': disgust
24
+ '12': embarrassment
25
+ '13': excitement
26
+ '14': fear
27
+ '15': gratitude
28
+ '16': grief
29
+ '17': joy
30
+ '18': love
31
+ '19': nervousness
32
+ '20': optimism
33
+ '21': pride
34
+ '22': realization
35
+ '23': relief
36
+ '24': remorse
37
+ '25': sadness
38
+ '26': surprise
39
+ '27': neutral
40
+ - name: labels_ekman
41
+ sequence:
42
+ class_label:
43
+ names:
44
+ '0': anger
45
+ '1': disgust
46
+ '2': fear
47
+ '3': joy
48
+ '4': sadness
49
+ '5': surprise
50
+ '6': neutral
51
+ - name: id
52
+ dtype: string
53
+ splits:
54
+ - name: train
55
+ num_bytes: 10670621
56
+ num_examples: 43410
57
+ - name: validation
58
+ num_bytes: 1330969
59
+ num_examples: 5426
60
+ - name: test
61
+ num_bytes: 1323849
62
+ num_examples: 5427
63
+ download_size: 7683063
64
+ dataset_size: 13325439
65
+ configs:
66
+ - config_name: simplified_ekman
67
+ data_files:
68
+ - split: train
69
+ path: simplified_ekman/train-*
70
+ - split: validation
71
+ path: simplified_ekman/validation-*
72
+ - split: test
73
+ path: simplified_ekman/test-*
74
  ---
75
+ Original dataset: [GoEmotions dataset](https://huggingface.co/datasets/google-research-datasets/go_emotions)
76
+
77
+ Added `labels_ekman` column with multi-label emotion annotations mapped to 7 base emotions as per Dr. Ekman theory.
78
+
79
+ Column `labels` contains multi-label emotion annotations with 28 emotion labels as per GoEmotion dataset:
80
+ ```yaml
81
+ 0: admiration
82
+ 1: amusement
83
+ 2: anger
84
+ 3: annoyance
85
+ 4: approval
86
+ 5: caring
87
+ 6: confusion
88
+ 7: curiosity
89
+ 8: desire
90
+ 9: disappointment
91
+ 10: disapproval
92
+ 11: disgust
93
+ 12: embarrassment
94
+ 13: excitement
95
+ 14: fear
96
+ 15: gratitude
97
+ 16: grief
98
+ 17: joy
99
+ 18: love
100
+ 19: nervousness
101
+ 20: optimism
102
+ 21: pride
103
+ 22: realization
104
+ 23: relief
105
+ 24: remorse
106
+ 25: sadness
107
+ 26: surprise
108
+ 27: neutral
109
+ ```
110
+
111
+ Column `labels_ekman` contains multi-label emotion annotations with 7 base emotions as per Dr. Ekman theory:
112
+ ```yaml
113
+ 0: anger
114
+ 1: disgust
115
+ 2: fear
116
+ 3: joy
117
+ 4: sadness
118
+ 5: surprise
119
+ 6: neutral
120
+ ```
121
+
122
+ Label mapping from 28 emotions from GoEmotion to 7 base emotions as per Dr. Ekman theory:
123
+ |GoEmotion|Ekman|
124
+ |---|---|
125
+ | admiration | joy|
126
+ | amusement | joy|
127
+ | anger | anger|
128
+ | annoyance | anger|
129
+ | approval | joy|
130
+ | caring | joy|
131
+ | confusion | surprise|
132
+ | curiosity | surprise|
133
+ | desire | joy|
134
+ | disappointment | sadness|
135
+ | disapproval | anger|
136
+ | disgust | disgust|
137
+ | embarrassment | sadness|
138
+ | excitement | joy|
139
+ | fear | fear|
140
+ | gratitude | joy|
141
+ | grief | sadness|
142
+ | joy | joy|
143
+ | love | joy|
144
+ | nervousness | fear|
145
+ | optimism | joy|
146
+ | pride | joy|
147
+ | realization | surprise|
148
+ | relief | joy|
149
+ | remorse | sadness|
150
+ | sadness | sadness|
151
+ | surprise | surprise|
152
+ | neutral | neutral|