cirimus commited on
Commit
2773de8
·
verified ·
1 Parent(s): 2270372

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +90 -31
README.md CHANGED
@@ -1,31 +1,90 @@
1
- ---
2
- dataset_info:
3
- features:
4
- - name: text
5
- dtype: string
6
- - name: label
7
- dtype: string
8
- - name: source
9
- dtype: string
10
- splits:
11
- - name: train
12
- num_bytes: 47692421
13
- num_examples: 412059
14
- - name: validation
15
- num_bytes: 5943141
16
- num_examples: 51443
17
- - name: test
18
- num_bytes: 6478964
19
- num_examples: 56310
20
- download_size: 32330824
21
- dataset_size: 60114526
22
- configs:
23
- - config_name: default
24
- data_files:
25
- - split: train
26
- path: data/train-*
27
- - split: validation
28
- path: data/validation-*
29
- - split: test
30
- path: data/test-*
31
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ dataset_info:
3
+ features:
4
+ - name: text
5
+ dtype: string
6
+ - name: label
7
+ dtype: string
8
+ - name: source
9
+ dtype: string
10
+ splits:
11
+ - name: train
12
+ num_bytes: 47692421
13
+ num_examples: 412059
14
+ - name: validation
15
+ num_bytes: 5943141
16
+ num_examples: 51443
17
+ - name: test
18
+ num_bytes: 6478964
19
+ num_examples: 56310
20
+ download_size: 32330824
21
+ dataset_size: 60114526
22
+ configs:
23
+ - config_name: default
24
+ data_files:
25
+ - split: train
26
+ path: data/train-*
27
+ - split: validation
28
+ path: data/validation-*
29
+ - split: test
30
+ path: data/test-*
31
+ tags:
32
+ - text-classification
33
+ - emotion
34
+ - multi-label
35
+ - crowdsourced
36
+ license: cc-by-4.0
37
+ task_categories:
38
+ - text-classification
39
+ language:
40
+ - en
41
+ pretty_name: Super Emotion
42
+ size_categories:
43
+ - 100K<n<1M
44
+ ---
45
+
46
+ # Super Emotion Dataset
47
+
48
+ ## Dataset Summary
49
+ The **Super Emotion Dataset** is a large-scale dataset for emotion classification, aggregated from multiple sources:
50
+ - [MELD](https://huggingface.co/datasets/declare-lab/MELD)
51
+ - [GoEmotions](https://huggingface.co/datasets/google-research-datasets/go_emotions)
52
+ - [Carer](https://huggingface.co/datasets/dair-ai/emotion)
53
+ - [ISEAR](https://www.unige.ch/cisa/research/materials-and-online-research/research-material/)
54
+ - [SemEval](https://huggingface.co/datasets/SemEvalWorkshop/sem_eval_2018_task_1)
55
+ - [Crowdflower](tasksource/crowdflower)
56
+
57
+ It contains **519,812 total samples**, respecting original train/validation/test splits where possible. It supports **7 emotion categories** which had maximum support in the aggregation: `joy, sadness, anger, fear, love, neutral, surprise`. Note that we merged some categories to this end (happiness and joy, hate and anger, grief and sadness).
58
+
59
+
60
+ ## Supported Tasks
61
+ This dataset is designed for **emotion classification** and can be used for:
62
+ - Single-label classification
63
+ - Multi-label emotion recognition
64
+ - Fine-tuning language models
65
+
66
+ ## Dataset Structure
67
+ The dataset follows the structure:
68
+
69
+ | Column | Type | Description |
70
+ |---------|--------|-------------|
71
+ | text | string | The input text |
72
+ | label | string | The assigned emotion label |
73
+ | source | string | The original dataset |
74
+
75
+ Splits:
76
+ - **Train**: 412,059 samples
77
+ - **Validation**: 51,443 samples
78
+ - **Test**: 56,310 samples
79
+
80
+ ## Citation
81
+ If you use this dataset, please cite the original sources (Crowdflower 2016, Elvis et al. 2018, Demszky et al. 2020, Vikash 2018, Poria et al. 2019, EI-reg Mohammad et al. 2018) as well as:
82
+
83
+ ```
84
+ @inproceedings{JdFE2025d,
85
+ title = {The Super Emotion Dataset},
86
+ author = {Enric Junqu\'e de Fortuny},
87
+ year = {2025},
88
+ howpublished = {\url{https://huggingface.co/cirimus/super-emotion}},
89
+ }
90
+ ```