iwonachristop commited on
Commit
b0649a6
1 Parent(s): d09345b

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +116 -0
README.md CHANGED
@@ -1,3 +1,119 @@
1
  ---
 
 
 
2
  license: cc-by-nc-sa-4.0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ pretty_name: nEMO
3
+ language:
4
+ - pl
5
  license: cc-by-nc-sa-4.0
6
+ multilinguality: monolingual
7
+ size_categories:
8
+ - 1K<n<10K
9
+ task_categories:
10
+ - audio-classification
11
+ - automatic-speech-recognition
12
+ - text-to-speech
13
+ task_ids:
14
+ - audio-emotion-recognition
15
+ - audio-language-identification
16
+ - sentiment-analysis
17
+ - speaker-identification
18
+ dataset_info:
19
+ features:
20
+ - name: audio
21
+ dtype: audio
22
+ - name: emotion
23
+ dtype: string
24
+ - name: raw_text
25
+ dtype: string
26
+ - name: normalized_text
27
+ dtype: string
28
+ - name: speaker_id
29
+ dtype: string
30
+ - name: gender
31
+ dtype: string
32
+ - name: age
33
+ dtype: string
34
+ splits:
35
+ - name: train
36
+ num_bytes: 531732105.875
37
+ num_examples: 4481
38
+ download_size: 531171916
39
+ dataset_size: 531732105.875
40
+ configs:
41
+ - config_name: default
42
+ data_files:
43
+ - split: train
44
+ path: data/train-*
45
  ---
46
+ # nEMO: Dataset of Emotional Speech in Polish
47
+
48
+ ## Dataset Description
49
+
50
+ nEMO is a simulated dataset of emotional speech in the Polish language. The corpus contains over 3 hours of samples recorded with the participation of nine actors portraying six emotional states: anger, fear, happiness, sadness, surprise, and a neutral state. The text material used was carefully selected to represent the phonetics of the Polish language. The corpus is available for free under the Creative Commons license (CC BY-NC-SA 4.0).
51
+
52
+ ### Example Usage
53
+
54
+ The nEMO dataset can be loaded and processed using the datasets library:
55
+
56
+ ```python
57
+ from datasets import load_dataset
58
+
59
+ nemo = load_dataset("iwonachristop/nemo", split="train")
60
+ ```
61
+
62
+ ### Supported Tasks
63
+
64
+ - `audio-classification`: This dataset was mainly created for the task of speech emotion recognition. Each recording is labeled with one of six emotional states (anger, fear, happiness, sadness, surprised, and neutral). Additionally, each sample is labeled with speaker id and speaker gender. Because of that, the dataset can also be used for different audio classification tasks.
65
+ - `automatic-speech-recognition`: The dataset includes orthographic and normalized transcriptions for each audio recording, making it a useful resource for automatic speech recognition (ASR) tasks. The sentences were carefully selected to cover a wide range of phonemes in the Polish language.
66
+ - `text-to-speech`: The dataset contains emotional audio recordings with transcriptions, which can be valuable for developing TTS systems that produce emotionally expressive speech.
67
+
68
+ ### Languages
69
+
70
+ nEMO contains audio and transcription in Polish language.
71
+
72
+ ## Dataset Structure
73
+
74
+ ### Data Instances
75
+
76
+ ```python
77
+ {
78
+ 'audio': {
79
+ 'path': None,
80
+ 'array': array([ 6.10351562e-05, -3.05175781e-05, -3.05175781e-05, ...,
81
+ 6.10351562e-05, -1.22070312e-04, 1.83105469e-04]),
82
+ 'sampling_rate': 24000
83
+ },
84
+ 'emotion': 'surprised',
85
+ 'raw_text': 'Ucho wykrywa dźwięki o różnej częstotliwości.',
86
+ 'normalized_text': 'ucho wykrywa dźwięki o różnej częstotliwości',
87
+ 'speaker_id': 'WR0',
88
+ 'gender': 'male',
89
+ 'age': '23'
90
+ }
91
+ ```
92
+
93
+ ### Data Fields
94
+
95
+ - `audio` (audio) - dictionary containing audio array, path and sampling rate,
96
+ - `emotion` (string) - label corresponding to emotional state,
97
+ - `raw_text` (string) - original (orthographic) transcription of the audio,
98
+ - `normalized_text` (string) - normalized transcription of the audio,
99
+ - `speaker_id` (string) - id of speaker,
100
+ - `gender` (string) - gender of the speaker,
101
+ - `age` (string) - age of the speaker.
102
+
103
+ ### Data Splits
104
+
105
+ The nEMO dataset is provided as a whole, without predefined training and test splits. This allows researchers and developers flexibility in creating their splits based on the specific needs.
106
+
107
+ ## Additional Information
108
+
109
+ ### Licensing Information
110
+
111
+ The dataset is available under the Creative Commons license (CC BY-NC-SA 4.0).
112
+
113
+ ### Citation Information
114
+
115
+ Bibtex
116
+
117
+ ### Contributions
118
+
119
+ Thanks to [@iwonachristop](https://github.com/iwona-christop) for adding this dataset.