Datasets:
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,26 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: apache-2.0
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
task_categories:
|
| 4 |
+
- emotion-recognition
|
| 5 |
+
language:
|
| 6 |
+
- en
|
| 7 |
+
pretty_name: EXPRESS
|
| 8 |
+
---
|
| 9 |
+
|
| 10 |
+
# EXPRESS Dataset
|
| 11 |
+
|
| 12 |
+
## Overview
|
| 13 |
+
This is the EXPRESS dataset from the paper:
|
| 14 |
+
https://arxiv.org/pdf/2509.09593
|
| 15 |
+
|
| 16 |
+
It is designed for emotion recognition and evaluation of large language models' fine-grained emotional understanding.
|
| 17 |
+
|
| 18 |
+
## Usage
|
| 19 |
+
|
| 20 |
+
You can load the dataset with:
|
| 21 |
+
|
| 22 |
+
```python
|
| 23 |
+
from datasets import load_dataset
|
| 24 |
+
|
| 25 |
+
dataset = load_dataset("bangzhao/express-emotion-recognition")
|
| 26 |
+
|