Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -15,7 +15,7 @@ dataset = load_dataset("amu-cai/CAMEO", config, split="test")
|
|
15 |
```
|
16 |
|
17 |
Available configs:
|
18 |
-
- `all`
|
19 |
- `CaFE`
|
20 |
- `CREMA-D`
|
21 |
- `EMNS`
|
@@ -33,13 +33,14 @@ Available configs:
|
|
33 |
|
34 |
## Supported Tasks
|
35 |
|
36 |
-
- **Audio Classification**: Primarily designed for speech emotion recognition, each recording is
|
37 |
|
38 |
-
- **Automatic Speech Recognition (ASR)**: With orthographic
|
39 |
|
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
|
@@ -67,20 +68,17 @@ CAMEO contains audio and transcription in eight languages: Bengali, English, Fre
|
|
67 |
```
|
68 |
|
69 |
### Data Fields
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
| `dataset` | `str` | The name of the dataset from which the sample was taken. |
|
82 |
-
| `language` | `str` | The primary language spoken in the audio sample. |
|
83 |
-
| `license` | `str` | The license under which the original dataset is distributed. |
|
84 |
|
85 |
## Data Splits
|
86 |
|
|
|
15 |
```
|
16 |
|
17 |
Available configs:
|
18 |
+
- `all`
|
19 |
- `CaFE`
|
20 |
- `CREMA-D`
|
21 |
- `EMNS`
|
|
|
33 |
|
34 |
## Supported Tasks
|
35 |
|
36 |
+
- **Audio Classification**: Primarily designed for speech emotion recognition, each recording is annotated with a label corresponding to an emotional state. Additionally, most samples include speaker identifier and gender, enabling its use in various audio classification tasks.
|
37 |
|
38 |
+
- **Automatic Speech Recognition (ASR)**: With orthographic transcriptions for each recording, this dataset is a valuable resource for ASR tasks.
|
39 |
|
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 |
+
|
44 |
CAMEO contains audio and transcription in eight languages: Bengali, English, French, German, Italian, Polish, Russian, Spanish.
|
45 |
|
46 |
## Data Structure
|
|
|
68 |
```
|
69 |
|
70 |
### Data Fields
|
71 |
+
|
72 |
+
- `file_id` (`str`): A unique identifier of the audio sample.
|
73 |
+
- `audio` (`dict`): A dictionary containing the file path to the audio sample, the raw waveform as a one-dimensional NumPy array, and the sampling rate (16 kHz).
|
74 |
+
- `emotion` (`str`): A label indicating the expressed emotional state.
|
75 |
+
- `transcription` (`str`): The orthographic transcription of the utterance.
|
76 |
+
- `speaker_id` (`str`): A unique identifier of the speaker.
|
77 |
+
- `gender` (`str`): The gender of the speaker.
|
78 |
+
- `age` (`str`): The age of the speaker.
|
79 |
+
- `dataset` (`str`): The name of the dataset from which the sample was taken.
|
80 |
+
- `language` (`str`): The primary language spoken in the audio sample.
|
81 |
+
- `license` (`str`): The license under which the original dataset is distributed.
|
|
|
|
|
|
|
82 |
|
83 |
## Data Splits
|
84 |
|