arnab04 commited on
Commit
bf0d195
·
verified ·
1 Parent(s): 791c609

Upload info.md

Browse files
Files changed (1) hide show
  1. info.md +107 -0
info.md ADDED
@@ -0,0 +1,107 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # GoEmotions Dataset (Preprocessed)
2
+
3
+ This directory contains the **preprocessed GoEmotions dataset** for **multi-label emotion classification**. The dataset has been standardized to ensure compatibility with transformer-based models and consistency with other emotion benchmarks used in this project.
4
+
5
+ ---
6
+
7
+ ## 📂 Dataset Structure
8
+
9
+ The dataset is split into:
10
+
11
+ * `train`
12
+ * `validation`
13
+ * `test`
14
+
15
+ Each split is provided as a tabular file with a uniform schema.
16
+
17
+ ---
18
+
19
+ ## 📊 Data Format
20
+
21
+ Each row represents a single text sample with multi-label emotion annotations.
22
+
23
+ **Columns:**
24
+
25
+ * **`text`** – Preprocessed textual input
26
+ * **Emotion labels (`0`–`27`)** – Binary indicators (`1` = emotion present, `0` = absent)
27
+
28
+ ```
29
+ text | 0 | 1 | 2 | ... | 27
30
+ ```
31
+
32
+ Multiple emotions may be active for a single sample.
33
+
34
+ ---
35
+
36
+ ## 🏷️ Emotion Label Mapping (28 Classes)
37
+
38
+ | Index | Emotion |
39
+ | ----: | -------------- |
40
+ | 0 | Admiration |
41
+ | 1 | Amusement |
42
+ | 2 | Anger |
43
+ | 3 | Annoyance |
44
+ | 4 | Approval |
45
+ | 5 | Caring |
46
+ | 6 | Confusion |
47
+ | 7 | Curiosity |
48
+ | 8 | Desire |
49
+ | 9 | Disappointment |
50
+ | 10 | Disapproval |
51
+ | 11 | Disgust |
52
+ | 12 | Embarrassment |
53
+ | 13 | Excitement |
54
+ | 14 | Fear |
55
+ | 15 | Gratitude |
56
+ | 16 | Grief |
57
+ | 17 | Joy |
58
+ | 18 | Love |
59
+ | 19 | Nervousness |
60
+ | 20 | Optimism |
61
+ | 21 | Pride |
62
+ | 22 | Realization |
63
+ | 23 | Relief |
64
+ | 24 | Remorse |
65
+ | 25 | Sadness |
66
+ | 26 | Surprise |
67
+ | 27 | Neutral |
68
+
69
+ ---
70
+
71
+ ## 🔧 Preprocessing Summary
72
+
73
+ * Converted original annotations to **multi-one-hot encoding**
74
+ * Standardized label dimensions (28 emotions)
75
+ * Removed unused metadata
76
+ * Preserved semantic and emotional content
77
+ * Applied preprocessing **prior to tokenization**
78
+
79
+ ---
80
+
81
+ ## ✅ Intended Use
82
+
83
+ * Multi-label emotion classification
84
+ * Transformer-based model training and evaluation
85
+ * Cross-dataset benchmarking
86
+ * Emotion representation learning
87
+
88
+ ---
89
+
90
+ ## 📚 Citation
91
+
92
+ If you use this dataset, please cite the original work:
93
+
94
+ Demszky et al. (2020).
95
+ **GoEmotions: A Dataset of Fine-Grained Emotions.**
96
+ Proceedings of ACL 2020.
97
+
98
+ ```bibtex
99
+ @inproceedings{demszky2020goemotions,
100
+ title = {GoEmotions: A Dataset of Fine-Grained Emotions},
101
+ author = {Demszky, Dorottya and Movshovitz-Attias, Dana and Ko, Jeongwoo and Cowen, Alan and Nemade, Gaurav and Ravi, Sujith},
102
+ booktitle = {Proceedings of the 58th Annual Meeting of the Association for Computational Linguistics},
103
+ year = {2020}
104
+ }
105
+ ```
106
+
107
+ ---