Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -1,9 +1,8 @@
|
|
1 |
# CAMEO: Collection of Multilingual Emotional Speech Corpora
|
2 |
|
3 |
## Dataset Description
|
4 |
-
CAMEO is a curated
|
5 |
|
6 |
-
The corpus is freely accessible under the Creative Commons license (CC BY-NC-SA 4.0).
|
7 |
|
8 |
## Example Usage
|
9 |
|
@@ -12,7 +11,7 @@ The dataset can be loaded and processed using the datasets library:
|
|
12 |
```python
|
13 |
from datasets import load_dataset
|
14 |
|
15 |
-
dataset = load_dataset("amu-cai/
|
16 |
```
|
17 |
|
18 |
Available configs:
|
@@ -41,15 +40,7 @@ Available configs:
|
|
41 |
- **Text-to-Speech (TTS)**: The dataset's emotional audio recordings, complemented by transcriptions, are beneficial for developing TTS systems that aim to produce emotionally expressive speech.
|
42 |
|
43 |
## Languages
|
44 |
-
CAMEO contains audio and transcription in eight languages:
|
45 |
-
- Bengali
|
46 |
-
- English
|
47 |
-
- French
|
48 |
-
- German
|
49 |
-
- Italian
|
50 |
-
- Polish
|
51 |
-
- Russian
|
52 |
-
- Spanish
|
53 |
|
54 |
## Data Structure
|
55 |
|
@@ -57,21 +48,21 @@ CAMEO contains audio and transcription in eight languages:
|
|
57 |
|
58 |
```python
|
59 |
{
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
}
|
76 |
```
|
77 |
|
@@ -115,5 +106,4 @@ The entire dataset is labeled as a test set and is not divided into separate tra
|
|
115 |
## Additional Information
|
116 |
|
117 |
### Licensing Information
|
118 |
-
|
119 |
-
The dataset is distributed under the Creative Commons license (CC BY-NC-SA 4.0).
|
|
|
1 |
# CAMEO: Collection of Multilingual Emotional Speech Corpora
|
2 |
|
3 |
## Dataset Description
|
4 |
+
CAMEO is a curated collection of multilingual emotional speech datasets. It includes 13 distinct datasets with transcriptions, encompassing a total of 41,265 audio samples. The collection features audio in eight languages: Bengali, English, French, German, Italian, Polish, Russian, and Spanish.
|
5 |
|
|
|
6 |
|
7 |
## Example Usage
|
8 |
|
|
|
11 |
```python
|
12 |
from datasets import load_dataset
|
13 |
|
14 |
+
dataset = load_dataset("amu-cai/CAMEO", config, split="test")
|
15 |
```
|
16 |
|
17 |
Available configs:
|
|
|
40 |
- **Text-to-Speech (TTS)**: The dataset's emotional audio recordings, complemented by transcriptions, are beneficial for developing TTS systems that aim to produce emotionally expressive speech.
|
41 |
|
42 |
## Languages
|
43 |
+
CAMEO contains audio and transcription in eight languages: Bengali, English, French, German, Italian, Polish, Russian, Spanish.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
44 |
|
45 |
## Data Structure
|
46 |
|
|
|
48 |
|
49 |
```python
|
50 |
{
|
51 |
+
'file_id': 'e80234c75eb3f827a0d85bb7737a107a425be1dd5d3cf5c59320b9981109b698.flac',
|
52 |
+
'audio': {
|
53 |
+
'path': None,
|
54 |
+
'array': array([-3.05175781e-05, 3.05175781e-05, -9.15527344e-05, ...,
|
55 |
+
-1.49536133e-03, -1.49536133e-03, -8.85009766e-04]),
|
56 |
+
'sampling_rate': 16000
|
57 |
+
},
|
58 |
+
'emotion': 'neutral',
|
59 |
+
'transcription': 'Cinq pumas fiers et passionnés',
|
60 |
+
'speaker_id': 'cafe_12',
|
61 |
+
'gender': 'female',
|
62 |
+
'age': '37',
|
63 |
+
'dataset': 'CaFE',
|
64 |
+
'language': 'French',
|
65 |
+
'license': 'CC BY-NC-SA 4.0'
|
66 |
}
|
67 |
```
|
68 |
|
|
|
106 |
## Additional Information
|
107 |
|
108 |
### Licensing Information
|
109 |
+
The licence of each dataset is described in the `license` field in the metadata.
|
|