Datasets:
Tasks:
Audio Classification
Modalities:
Text
Formats:
parquet
Sub-tasks:
audio-emotion-recognition
Languages:
Russian
Size:
1K - 10K
License:
Dataset card written from measured statistics
Browse files- README.md +85 -25
- assets/banner.svg +35 -0
- assets/classes.svg +62 -0
README.md
CHANGED
|
@@ -1,28 +1,88 @@
|
|
| 1 |
---
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
dataset_size: 1079314362
|
| 25 |
---
|
| 26 |
-
# Dataset Card for "resd_annotated_multi"
|
| 27 |
|
| 28 |
-
[
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
license: mit
|
| 3 |
+
language:
|
| 4 |
+
- ru
|
| 5 |
+
annotations_creators:
|
| 6 |
+
- expert-generated
|
| 7 |
+
language_creators:
|
| 8 |
+
- expert-generated
|
| 9 |
+
multilinguality:
|
| 10 |
+
- monolingual
|
| 11 |
+
pretty_name: RESD (Annotated, multi)
|
| 12 |
+
size_categories:
|
| 13 |
+
- 1K<n<10K
|
| 14 |
+
source_datasets:
|
| 15 |
+
- original
|
| 16 |
+
task_categories:
|
| 17 |
+
- audio-classification
|
| 18 |
+
task_ids:
|
| 19 |
+
- audio-emotion-recognition
|
| 20 |
+
tags:
|
| 21 |
+
- emotion-recognition
|
| 22 |
+
- russian
|
| 23 |
+
- speech
|
|
|
|
| 24 |
---
|
|
|
|
| 25 |
|
| 26 |
+

|
| 27 |
+
|
| 28 |
+
# RESD (Annotated, multi)
|
| 29 |
+
|
| 30 |
+
RESD with transcripts and separate text-emotion labels.
|
| 31 |
+
|
| 32 |
+
## How it was recorded
|
| 33 |
+
|
| 34 |
+
RESD was recorded in a studio by **20 voice actors**. There was no script: the actors were not handed lines to read. Instead each actor in a pair was privately given an emotion to play, and the dialogue was improvised from there. So the words are spontaneous while the emotion is deliberate — which is the point, and also the limit. The label describes what the actor was told to convey, not what a listener independently judged.
|
| 35 |
+
|
| 36 |
+
## Splits
|
| 37 |
+
|
| 38 |
+
| Split | Rows | Hours | Mean clip |
|
| 39 |
+
|---|---:|---:|---:|
|
| 40 |
+
| `train` | 1116 | 1.88 | 6.1 s |
|
| 41 |
+
| `test` | 280 | 0.46 | 5.9 s |
|
| 42 |
+
|
| 43 |
+
<img src="assets/classes.svg" alt="Class distribution" width="760">
|
| 44 |
+
|
| 45 |
+
## Fields
|
| 46 |
+
|
| 47 |
+
| Column | Meaning |
|
| 48 |
+
|---|---|
|
| 49 |
+
| `name` | Clip identifier |
|
| 50 |
+
| `path` | Original file path |
|
| 51 |
+
| `speech` | Audio |
|
| 52 |
+
| `text` | Transcript of the utterance |
|
| 53 |
+
| `emotion` | Emotion label of the recording |
|
| 54 |
+
| `text_emotions` | Emotions judged from the transcript alone, multi-label |
|
| 55 |
+
|
| 56 |
+
> [!NOTE]
|
| 57 |
+
> `emotion` and `text_emotions` disagree by design. The audio labels are near-balanced across seven classes, while the text labels are dominated by `neutral` (717 of 1378 in `train`). The same clip is often flat on the page and loud in the voice, which is the whole argument for listening rather than reading.
|
| 58 |
+
|
| 59 |
+
## Usage
|
| 60 |
+
|
| 61 |
+
```python
|
| 62 |
+
from datasets import load_dataset
|
| 63 |
+
|
| 64 |
+
ds = load_dataset("Aniemore/resd_annotated_multi")
|
| 65 |
+
print(ds["train"][0]["emotion"])
|
| 66 |
+
```
|
| 67 |
+
|
| 68 |
+
## Limitations
|
| 69 |
+
|
| 70 |
+
Acted emotion is not spontaneous emotion. The classes here are near-balanced, while unscripted Russian speech is overwhelmingly neutral, so a model that scores well on this test set can still miss most of the neutral speech it meets in production. Treat a RESD score as a comparison between models, not as a readiness signal.
|
| 71 |
+
|
| 72 |
+
## Citation
|
| 73 |
+
|
| 74 |
+
```bibtex
|
| 75 |
+
@misc{Aniemore,
|
| 76 |
+
author = {Артем Аментес, Илья Лубенец, Никита Давидчук},
|
| 77 |
+
title = {Открытая библиотека искусственного интеллекта для анализа и выявления эмоциональных оттенков речи человека},
|
| 78 |
+
year = {2022},
|
| 79 |
+
publisher = {Hugging Face},
|
| 80 |
+
journal = {Hugging Face Hub},
|
| 81 |
+
howpublished = {\url{https://huggingface.com/aniemore/Aniemore}},
|
| 82 |
+
email = {hello@socialcode.ru}
|
| 83 |
+
}
|
| 84 |
+
```
|
| 85 |
+
|
| 86 |
+
## License
|
| 87 |
+
|
| 88 |
+
MIT.
|
assets/banner.svg
ADDED
|
|
assets/classes.svg
ADDED
|
|