arnab04 commited on
Commit
63e748c
·
verified ·
1 Parent(s): b08249d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +139 -2
README.md CHANGED
@@ -6,7 +6,144 @@ language:
6
  - en
7
  tags:
8
  - emotion
9
- pretty_name: Go-Emotions
10
  size_categories:
11
  - 10K<n<100K
12
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6
  - en
7
  tags:
8
  - emotion
9
+ pretty_name: Go-Emotions (Preprocessed)
10
  size_categories:
11
  - 10K<n<100K
12
+ task_ids:
13
+ - multi-label-classification
14
+ dataset_info:
15
+ features:
16
+ - name: text
17
+ dtype: string
18
+ - name: labels
19
+ dtype: sequence
20
+ feature:
21
+ dtype: int32
22
+ splits:
23
+ - name: train
24
+ - name: validation
25
+ - name: test
26
+ ---
27
+
28
+ # GoEmotions (Preprocessed)
29
+
30
+ ## Dataset Description
31
+
32
+ This dataset contains a **preprocessed and standardized version of GoEmotions** for **multi-label emotion classification**.
33
+ It is designed for seamless use with **transformer-based language models** and consistent benchmarking alongside other emotion datasets.
34
+
35
+ The preprocessing ensures unified label representations and removes unnecessary metadata while preserving the original semantic and emotional content.
36
+
37
+ ---
38
+
39
+ ## Supported Tasks
40
+
41
+ - Multi-label emotion classification
42
+ - Emotion representation learning
43
+ - Cross-dataset benchmarking
44
+
45
+ ---
46
+
47
+ ## Dataset Structure
48
+
49
+ The dataset is split into:
50
+
51
+ - `train`
52
+ - `validation`
53
+ - `test`
54
+
55
+ Each split follows the same schema.
56
+
57
+ ---
58
+
59
+ ## Data Format
60
+
61
+ Each example consists of:
62
+
63
+ - **`text`** (`string`): Preprocessed text input
64
+ - **`labels`** (`List[int]`): Multi-one-hot encoded emotion labels (length = 28)
65
+
66
+ Each label is binary:
67
+ - `1` → emotion present
68
+ - `0` → emotion absent
69
+
70
+ Multiple emotions may be active for a single sample.
71
+
72
+ ---
73
+
74
+ ## Emotion Label Mapping (28 Classes)
75
+
76
+ | Index | Emotion |
77
+ |------:|---------|
78
+ | 0 | Admiration |
79
+ | 1 | Amusement |
80
+ | 2 | Anger |
81
+ | 3 | Annoyance |
82
+ | 4 | Approval |
83
+ | 5 | Caring |
84
+ | 6 | Confusion |
85
+ | 7 | Curiosity |
86
+ | 8 | Desire |
87
+ | 9 | Disappointment |
88
+ | 10 | Disapproval |
89
+ | 11 | Disgust |
90
+ | 12 | Embarrassment |
91
+ | 13 | Excitement |
92
+ | 14 | Fear |
93
+ | 15 | Gratitude |
94
+ | 16 | Grief |
95
+ | 17 | Joy |
96
+ | 18 | Love |
97
+ | 19 | Nervousness |
98
+ | 20 | Optimism |
99
+ | 21 | Pride |
100
+ | 22 | Realization |
101
+ | 23 | Relief |
102
+ | 24 | Remorse |
103
+ | 25 | Sadness |
104
+ | 26 | Surprise |
105
+ | 27 | Neutral |
106
+
107
+ ---
108
+
109
+ ## Preprocessing Details
110
+
111
+ The following preprocessing steps were applied:
112
+
113
+ - Conversion to **multi-one-hot label encoding**
114
+ - Standardization to a fixed **28-class emotion space**
115
+ - Removal of extraneous metadata
116
+ - Text normalization
117
+ - Preprocessing applied **before tokenization**
118
+
119
+ ---
120
+
121
+ ## Intended Use
122
+
123
+ This dataset is intended for:
124
+
125
+ - Training and evaluating multi-label emotion classifiers
126
+ - Transformer-based NLP experiments
127
+ - Emotion analysis and representation learning
128
+
129
+ ---
130
+
131
+ ## Limitations
132
+
133
+ - The dataset contains **preprocessed text only**
134
+ - Raw GoEmotions data is not included
135
+ - Emotion annotations reflect annotator perception and may contain subjectivity
136
+
137
+ ---
138
+
139
+ ## Citation
140
+
141
+ If you use this dataset, please cite the original GoEmotions paper:
142
+
143
+ ```bibtex
144
+ @inproceedings{demszky2020goemotions,
145
+ title = {GoEmotions: A Dataset of Fine-Grained Emotions},
146
+ author = {Demszky, Dorottya and Movshovitz-Attias, Dana and Ko, Jeongwoo and Cowen, Alan and Nemade, Gaurav and Ravi, Sujith},
147
+ booktitle = {Proceedings of the 58th Annual Meeting of the Association for Computational Linguistics},
148
+ year = {2020}
149
+ }