AnnyNguyen commited on
Commit
8ba233c
·
verified ·
1 Parent(s): b5d97d3

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +93 -3
README.md CHANGED
@@ -1,3 +1,93 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ task_categories:
3
+ - text-classification
4
+ language:
5
+ - vi
6
+ ---
7
+ ## Dataset Card for UIT‑VSMEC
8
+
9
+ ### 1. Dataset Summary
10
+
11
+ **UIT‑VSMEC** (Vietnamese Social Media Emotion Corpus) is a benchmark corpus for emotion recognition in Vietnamese social media comments. It consists of **6,927** human‐annotated sentences, each labeled with one of six basic emotions, plus an `Other` category.
12
+
13
+ ### 2. Supported Tasks and Leaderboard
14
+
15
+ * **Primary Task**: Text classification – emotion recognition
16
+ * **Metrics**: Accuracy, F1‑score
17
+
18
+ *No public leaderboard yet; contributions welcome!*
19
+
20
+ ### 3. Languages
21
+
22
+ * Vietnamese
23
+
24
+ ### 4. Data Fields
25
+
26
+ * **Sentence** (`str`): The raw social media comment.
27
+ * **Emotion** (`str`): Emotion category.
28
+ * **type** (`str`): Split name.
29
+ * **index** (`int`): The index of sentence.
30
+
31
+ ### 5. Emotion Labels
32
+
33
+ | Label | Description |
34
+ | ----------- | ------------------------------ |
35
+ | `Enjoyment` | Joy, happiness, or pleasure. |
36
+ | `Sadness` | Grief, sorrow, or unhappiness. |
37
+ | `Anger` | Annoyance or hostility. |
38
+ | `Fear` | Anxiety or apprehension. |
39
+ | `Disgust` | Revulsion or aversion. |
40
+ | `Surprise` | Shock or amazement. |
41
+ | `Other` | None of the above. |
42
+
43
+
44
+ ### 6. Usage
45
+
46
+ ```python
47
+ from datasets import load_dataset
48
+
49
+ ds = load_dataset("visolex/UIT-VSMEC")
50
+
51
+ train_ds = ds.filter(lambda x: x["type"] == "train")
52
+ dev_ds = ds.filter(lambda x: x["type"] == "dev")
53
+ test_ds = ds.filter(lambda x: x["type"] == "test")
54
+
55
+ print(train_ds[0])
56
+ ```
57
+
58
+ ### 7. Dataset Creation
59
+
60
+ 1. **Source Data**: Original splits were downloaded from a Google Drive folder.
61
+ 2. **Merge Process**: Combined train/dev/test CSVs into one file; added a `type` column.
62
+ 3. **Preprocessing**: Minimal cleaning—only normalized whitespace; preserved original labels.
63
+
64
+ ### 8. Source & Links
65
+
66
+ * **Original Google Drive** (raw CSVs):
67
+ [https://drive.google.com/drive/folders/1HooABJyrddVGzll7fgkJ6VzkG\_XuWfRu](https://drive.google.com/drive/folders/1HooABJyrddVGzll7fgkJ6VzkG_XuWfRu)
68
+
69
+ ### 9. Licenses and Citation
70
+
71
+ #### License
72
+
73
+ Please refer to the original dataset license (if unspecified, assume **CC BY 4.0**).
74
+
75
+ #### How to Cite
76
+
77
+ **Original Paper**
78
+
79
+ ```
80
+ @InProceedings{10.1007/978-981-15-6168-9_27,
81
+ author = {Ho, Vong Anh and Nguyen, Duong Huynh-Cong and Nguyen, Danh Hoang and Pham, Linh Thi-Van
82
+ and Nguyen, Duc-Vu and Nguyen, Kiet Van and Nguyen, Ngan Luu-Thuy},
83
+ title = {Emotion Recognition for Vietnamese Social Media Text},
84
+ booktitle = {Computational Linguistics},
85
+ year = {2020},
86
+ publisher = {Springer Singapore},
87
+ pages = {319--333},
88
+ isbn = {978-981-15-6168-9}
89
+ }
90
+ ```
91
+
92
+
93
+