Devishetty100 commited on
Commit
8c7690c
·
verified ·
1 Parent(s): ecde4bb

Upload 2 files

Browse files
Files changed (2) hide show
  1. README.md +62 -0
  2. dataset_config.json +44 -0
README.md ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Emotional Speech Dataset
2
+
3
+ This dataset contains emotional speech recordings by Maya, featuring various emotions including anger, happiness, sadness, fear, excitement, calmness, and more.
4
+
5
+ ## Dataset Description
6
+
7
+ ### Dataset Summary
8
+
9
+ A collection of audio recordings with transcriptions, where the speaker (Maya) expresses different emotions. The dataset is designed for emotion recognition and emotional speech synthesis tasks.
10
+
11
+ ### Supported Tasks
12
+
13
+ - Audio Classification
14
+ - Speech Recognition
15
+ - Emotion Recognition
16
+ - Text-to-Speech
17
+ - Voice Conversion
18
+
19
+ ### Languages
20
+
21
+ English
22
+
23
+ ### Dataset Structure
24
+
25
+ The dataset is organized into train, validation, and test splits with the following structure:
26
+ ```
27
+ {
28
+ 'file': 'path/to/audio.wav',
29
+ 'text': 'transcription of the audio',
30
+ 'emotion': 'emotion label',
31
+ 'speaker': 'Maya'
32
+ }
33
+ ```
34
+
35
+ ### Emotions
36
+
37
+ The dataset includes various emotions:
38
+ - Angry
39
+ - Happy
40
+ - Sad
41
+ - Fear
42
+ - Excited
43
+ - Calm
44
+ - Apologetic
45
+ - Base (Neutral)
46
+ - Surprise
47
+
48
+ ### Data Split
49
+
50
+ - Train: 80%
51
+ - Validation: 10%
52
+ - Test: 10%
53
+
54
+ ## Dataset Creation
55
+
56
+ ### Source Data
57
+
58
+ The audio recordings are performed by Maya, expressing different emotions through various conversational phrases and statements.
59
+
60
+ ### Personal and Sensitive Information
61
+
62
+ The dataset contains only acted emotional speech and does not include any personal or sensitive information.
dataset_config.json ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "description": "Emotional speech dataset featuring Maya as the speaker",
3
+ "citation": "",
4
+ "homepage": "",
5
+ "license": "",
6
+ "features": {
7
+ "file": {
8
+ "dtype": "string",
9
+ "_type": "Value"
10
+ },
11
+ "text": {
12
+ "dtype": "string",
13
+ "_type": "Value"
14
+ },
15
+ "emotion": {
16
+ "dtype": "string",
17
+ "_type": "Value"
18
+ },
19
+ "speaker": {
20
+ "dtype": "string",
21
+ "_type": "Value"
22
+ }
23
+ },
24
+ "splits": {
25
+ "train": {
26
+ "name": "train",
27
+ "num_bytes": null,
28
+ "num_examples": null,
29
+ "dataset_name": "emotional_speech"
30
+ },
31
+ "validation": {
32
+ "name": "validation",
33
+ "num_bytes": null,
34
+ "num_examples": null,
35
+ "dataset_name": "emotional_speech"
36
+ },
37
+ "test": {
38
+ "name": "test",
39
+ "num_bytes": null,
40
+ "num_examples": null,
41
+ "dataset_name": "emotional_speech"
42
+ }
43
+ }
44
+ }