Datasets:

Modalities:
Audio
Text
Formats:
parquet
ArXiv:
Libraries:
Datasets
pandas
License:
iwonachristop commited on
Commit
6a9de56
·
verified ·
1 Parent(s): c1bc4aa

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +15 -17
README.md CHANGED
@@ -15,7 +15,7 @@ dataset = load_dataset("amu-cai/CAMEO", config, split="test")
15
  ```
16
 
17
  Available configs:
18
- - `all` (default)
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 tagged with one of six emotional states: anger, fear, happiness, sadness, surprise, and neutral. Additionally, each sample includes speaker ID and gender, enabling its use in various audio classification tasks.
37
 
38
- - **Automatic Speech Recognition (ASR)**: With orthographic and normalized transcriptions for each recording, this dataset is a valuable resource for ASR tasks. The sentences are selected to cover a broad range of phonemes, particularly in the Polish language.
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
- The structure of a data instance is as follows:
71
-
72
- | Field | Type | Description |
73
- |----------------|--------|-----------------------------------------------------------------------------|
74
- | `file_id` | `str` | A unique identifier of the audio sample. |
75
- | `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). |
76
- | `emotion` | `str` | A label indicating the expressed emotional state. |
77
- | `transcription`| `str` | The orthographic transcription of the utterance. |
78
- | `speaker_id` | `str` | A unique identifier of the speaker. |
79
- | `gender` | `str` | The gender of the speaker. |
80
- | `age` | `str` | The age of the speaker. |
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