Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -1,5 +1,7 @@
|
|
1 |
---
|
|
|
2 |
dataset_info:
|
|
|
3 |
features:
|
4 |
- name: text
|
5 |
dtype: string
|
@@ -14,25 +16,40 @@ dataset_info:
|
|
14 |
'4': sadness
|
15 |
'5': surprise
|
16 |
'6': neutral
|
|
|
|
|
17 |
splits:
|
18 |
- name: train
|
19 |
-
num_bytes:
|
20 |
num_examples: 43410
|
21 |
- name: validation
|
22 |
-
num_bytes:
|
23 |
num_examples: 5426
|
24 |
- name: test
|
25 |
-
num_bytes:
|
26 |
num_examples: 5427
|
27 |
-
download_size:
|
28 |
-
dataset_size:
|
29 |
configs:
|
30 |
-
- config_name:
|
31 |
data_files:
|
32 |
- split: train
|
33 |
-
path:
|
34 |
- split: validation
|
35 |
-
path:
|
36 |
- split: test
|
37 |
-
path:
|
38 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
+
license: mit
|
3 |
dataset_info:
|
4 |
+
config_name: simplified_ekman
|
5 |
features:
|
6 |
- name: text
|
7 |
dtype: string
|
|
|
16 |
'4': sadness
|
17 |
'5': surprise
|
18 |
'6': neutral
|
19 |
+
- name: id
|
20 |
+
dtype: string
|
21 |
splits:
|
22 |
- name: train
|
23 |
+
num_bytes: 10670621
|
24 |
num_examples: 43410
|
25 |
- name: validation
|
26 |
+
num_bytes: 1330969
|
27 |
num_examples: 5426
|
28 |
- name: test
|
29 |
+
num_bytes: 1323849
|
30 |
num_examples: 5427
|
31 |
+
download_size: 7683063
|
32 |
+
dataset_size: 13325439
|
33 |
configs:
|
34 |
+
- config_name: simplified_ekman
|
35 |
data_files:
|
36 |
- split: train
|
37 |
+
path: main/train-*
|
38 |
- split: validation
|
39 |
+
path: main/validation-*
|
40 |
- split: test
|
41 |
+
path: main/test-*
|
42 |
---
|
43 |
+
Original dataset: [GoEmotions dataset](https://huggingface.co/datasets/google-research-datasets/go_emotions)
|
44 |
+
|
45 |
+
|
46 |
+
Dataset contains 7 emotion labels as per Dr. Ekman theory. Labels are as follows:
|
47 |
+
```yaml
|
48 |
+
0: anger
|
49 |
+
1: disgust
|
50 |
+
2: fear
|
51 |
+
3: joy
|
52 |
+
4: sadness
|
53 |
+
5: surprise
|
54 |
+
6: neutral
|
55 |
+
```
|