Ar4ikov commited on
Commit
189c991
·
verified ·
1 Parent(s): 363379e

Dataset card written from measured statistics

Browse files
Files changed (3) hide show
  1. README.md +85 -25
  2. assets/banner.svg +35 -0
  3. assets/classes.svg +62 -0
README.md CHANGED
@@ -1,28 +1,88 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: name
5
- dtype: string
6
- - name: path
7
- dtype: string
8
- - name: speech
9
- sequence: float64
10
- - name: text
11
- dtype: string
12
- - name: emotion
13
- dtype: string
14
- - name: text_emotions
15
- sequence: string
16
- splits:
17
- - name: train
18
- num_bytes: 866818029
19
- num_examples: 1116
20
- - name: test
21
- num_bytes: 212496333
22
- num_examples: 280
23
- download_size: 615228382
24
- dataset_size: 1079314362
25
  ---
26
- # Dataset Card for "resd_annotated_multi"
27
 
28
- [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ ![RESD (Annotated, multi)](assets/banner.svg)
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