File size: 2,701 Bytes
8ba233c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
---
task_categories:
- text-classification
language:
- vi
---
## Dataset Card for UIT‑VSMEC

### 1. Dataset Summary

**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.

### 2. Supported Tasks and Leaderboard

* **Primary Task**: Text classification – emotion recognition
* **Metrics**: Accuracy, F1‑score

*No public leaderboard yet; contributions welcome!*

### 3. Languages

* Vietnamese

### 4. Data Fields

* **Sentence** (`str`): The raw social media comment.
* **Emotion** (`str`): Emotion category.
* **type** (`str`): Split name.
* **index** (`int`): The index of sentence.

### 5. Emotion Labels

| Label       | Description                    |
| ----------- | ------------------------------ |
| `Enjoyment` | Joy, happiness, or pleasure.   |
| `Sadness`   | Grief, sorrow, or unhappiness. |
| `Anger`     | Annoyance or hostility.        |
| `Fear`      | Anxiety or apprehension.       |
| `Disgust`   | Revulsion or aversion.         |
| `Surprise`  | Shock or amazement.            |
| `Other`     | None of the above.             |


### 6. Usage

```python
from datasets import load_dataset

ds = load_dataset("visolex/UIT-VSMEC")

train_ds = ds.filter(lambda x: x["type"] == "train")
dev_ds   = ds.filter(lambda x: x["type"] == "dev")
test_ds  = ds.filter(lambda x: x["type"] == "test")

print(train_ds[0])
```

### 7. Dataset Creation

1. **Source Data**: Original splits were downloaded from a Google Drive folder.
2. **Merge Process**: Combined train/dev/test CSVs into one file; added a `type` column.
3. **Preprocessing**: Minimal cleaning—only normalized whitespace; preserved original labels.

### 8. Source & Links

* **Original Google Drive** (raw CSVs):
  [https://drive.google.com/drive/folders/1HooABJyrddVGzll7fgkJ6VzkG\_XuWfRu](https://drive.google.com/drive/folders/1HooABJyrddVGzll7fgkJ6VzkG_XuWfRu)

### 9. Licenses and Citation

#### License

Please refer to the original dataset license (if unspecified, assume **CC BY 4.0**).

#### How to Cite

**Original Paper**

```
@InProceedings{10.1007/978-981-15-6168-9_27,
  author    = {Ho, Vong Anh and Nguyen, Duong Huynh-Cong and Nguyen, Danh Hoang and Pham, Linh Thi-Van
               and Nguyen, Duc-Vu and Nguyen, Kiet Van and Nguyen, Ngan Luu-Thuy},
  title     = {Emotion Recognition for Vietnamese Social Media Text},
  booktitle = {Computational Linguistics},
  year      = {2020},
  publisher = {Springer Singapore},
  pages     = {319--333},
  isbn      = {978-981-15-6168-9}
}
```