iwonachristop commited on
Commit
c55f966
1 Parent(s): 15a3c42

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +4 -4
README.md CHANGED
@@ -77,6 +77,7 @@ nEMO contains audio and transcription in Polish language.
77
 
78
  ```python
79
  {
 
80
  'audio': {
81
  'path': None,
82
  'array': array([ 6.10351562e-05, -3.05175781e-05, -3.05175781e-05, ...,
@@ -88,21 +89,20 @@ nEMO contains audio and transcription in Polish language.
88
  'normalized_text': 'ucho wykrywa dźwięki o różnej częstotliwości',
89
  'speaker_id': 'WR0',
90
  'gender': 'male',
91
- 'age': 23,
92
- 'file_id': 'WR0_surprised_64'
93
  }
94
  ```
95
 
96
  ### Data Fields
97
 
 
98
  - `audio` (audio) - dictionary containing audio array, path and sampling rate,
99
  - `emotion` (string) - label corresponding to emotional state,
100
  - `raw_text` (string) - original (orthographic) transcription of the audio,
101
  - `normalized_text` (string) - normalized transcription of the audio,
102
  - `speaker_id` (string) - id of speaker,
103
  - `gender` (string) - gender of the speaker,
104
- - `age` (int32) - age of the speaker,
105
- - `file_id` (string) - id of file, i.e. `{speaker_id}_{emotion}_{sentence_id}`.
106
 
107
  ### Data Splits
108
 
 
77
 
78
  ```python
79
  {
80
+ 'file_id': 'WR0_surprised_64',
81
  'audio': {
82
  'path': None,
83
  'array': array([ 6.10351562e-05, -3.05175781e-05, -3.05175781e-05, ...,
 
89
  'normalized_text': 'ucho wykrywa dźwięki o różnej częstotliwości',
90
  'speaker_id': 'WR0',
91
  'gender': 'male',
92
+ 'age': 23
 
93
  }
94
  ```
95
 
96
  ### Data Fields
97
 
98
+ - `file_id` (string) - id of file, i.e. `{speaker_id}_{emotion}_{sentence_id}`,
99
  - `audio` (audio) - dictionary containing audio array, path and sampling rate,
100
  - `emotion` (string) - label corresponding to emotional state,
101
  - `raw_text` (string) - original (orthographic) transcription of the audio,
102
  - `normalized_text` (string) - normalized transcription of the audio,
103
  - `speaker_id` (string) - id of speaker,
104
  - `gender` (string) - gender of the speaker,
105
+ - `age` (int32) - age of the speaker.
 
106
 
107
  ### Data Splits
108