Ar4ikov commited on
Commit
f5805b5
·
verified ·
1 Parent(s): 0f56539

Dataset card written from measured statistics

Browse files
Files changed (3) hide show
  1. README.md +62 -8
  2. assets/banner.svg +35 -0
  3. assets/classes.svg +52 -0
README.md CHANGED
@@ -1,16 +1,14 @@
1
  ---
 
 
 
2
  annotations_creators:
3
  - crowdsourced
4
  language_creators:
5
  - expert-generated
6
- - crowdsourced
7
- language:
8
- - ru
9
- license:
10
- - mit
11
  multilinguality:
12
  - monolingual
13
- pretty_name: Russian Emotional Phonetic Voices Small
14
  size_categories:
15
  - 1K<n<10K
16
  source_datasets:
@@ -19,10 +17,62 @@ task_categories:
19
  - audio-classification
20
  task_ids:
21
  - audio-emotion-recognition
 
 
 
 
22
  ---
23
 
24
- # Citations
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
25
  ```
 
 
 
 
 
 
 
 
26
  @misc{Aniemore,
27
  author = {Артем Аментес, Илья Лубенец, Никита Давидчук},
28
  title = {Открытая библиотека искусственного интеллекта для анализа и выявления эмоциональных оттенков речи человека},
@@ -32,4 +82,8 @@ task_ids:
32
  howpublished = {\url{https://huggingface.com/aniemore/Aniemore}},
33
  email = {hello@socialcode.ru}
34
  }
35
- ```
 
 
 
 
 
1
  ---
2
+ license: mit
3
+ language:
4
+ - ru
5
  annotations_creators:
6
  - crowdsourced
7
  language_creators:
8
  - expert-generated
 
 
 
 
 
9
  multilinguality:
10
  - monolingual
11
+ pretty_name: Russian Emotional Phonetic Voices Small
12
  size_categories:
13
  - 1K<n<10K
14
  source_datasets:
 
17
  - audio-classification
18
  task_ids:
19
  - audio-emotion-recognition
20
+ tags:
21
+ - emotion-recognition
22
+ - russian
23
+ - speech
24
  ---
25
 
26
+ ![Russian Emotional Phonetic Voices — Small](assets/banner.svg)
27
+
28
+ # Russian Emotional Phonetic Voices — Small
29
+
30
+ The compact REPV subset.
31
+
32
+ ## How it was collected
33
+
34
+ REPV was gathered by crowdsourcing rather than in a studio: around **200 different speakers** for the full set and about **50** for REPV-S. Recording conditions therefore vary from contributor to contributor, which makes it harder than RESD and closer to what a microphone in the wild actually receives.
35
+
36
+ ## Splits
37
+
38
+ | Split | Rows | Hours | Mean clip |
39
+ |---|---:|---:|---:|
40
+ | `train` | 112 | 0.12 | 3.7 s |
41
+ | `test` | 28 | 0.03 | 3.9 s |
42
+
43
+ <img src="assets/classes.svg" alt="Class distribution" width="760">
44
+
45
+ ## Fields
46
+
47
+ | Column | Meaning |
48
+ |---|---|
49
+ | `path` | Original file path |
50
+ | `file` | Source file name |
51
+ | `gender` | Speaker gender as reported by the contributor |
52
+ | `emotion` | Emotion label of the recording |
53
+ | `speech` | Audio |
54
+
55
+ Gender is close to even in `train`: 58 f, 54 m.
56
+
57
+ > [!NOTE]
58
+ > The label set is **not** the seven-class one used by RESD and the Aniemore models. REPV has five: `anger`, `enthusiasm`, `happiness`, `sadness` and `tiredness`. `tiredness` appears nowhere else in the library, and `neutral`, `fear` and `disgust` are absent here.
59
+
60
+ ## Usage
61
+
62
+ ```python
63
+ from datasets import load_dataset
64
+
65
+ ds = load_dataset("Aniemore/REPV-S")
66
+ print(ds["train"][0]["emotion"])
67
  ```
68
+
69
+ ## Limitations
70
+
71
+ Crowdsourced audio varies in microphone, room and level, and the whole set is 0.1 hours — small enough that a single split can move a score by several points. `REPV-S` in particular holds 140 clips in total and is meant for smoke tests rather than for measuring anything.
72
+
73
+ ## Citation
74
+
75
+ ```bibtex
76
  @misc{Aniemore,
77
  author = {Артем Аментес, Илья Лубенец, Никита Давидчук},
78
  title = {Открытая библиотека искусственного интеллекта для анализа и выявления эмоциональных оттенков речи человека},
 
82
  howpublished = {\url{https://huggingface.com/aniemore/Aniemore}},
83
  email = {hello@socialcode.ru}
84
  }
85
+ ```
86
+
87
+ ## License
88
+
89
+ MIT.
assets/banner.svg ADDED
assets/classes.svg ADDED