Update README.md
Browse files
README.md
CHANGED
@@ -17,9 +17,14 @@ each sample is at most 30 seconds
|
|
17 |
```
|
18 |
|
19 |
### Dataset structure
|
20 |
-
|
21 |
-
**
|
22 |
-
**
|
23 |
-
**
|
24 |
-
|
25 |
-
**
|
|
|
|
|
|
|
|
|
|
|
|
17 |
```
|
18 |
|
19 |
### Dataset structure
|
20 |
+
Every example has the following:
|
21 |
+
**num_speakers** - the number of speakers
|
22 |
+
**utter** - list of utterences data
|
23 |
+
**audio** - the waveform of the audio
|
24 |
+
|
25 |
+
Each entry in the **utter** is a dict and has the following structure:
|
26 |
+
**start** - the starting position in **audio** of the speaker audio
|
27 |
+
**end** - the ending position in **audio** of the speaker audio
|
28 |
+
**file_id** - the identificator of the speaker
|
29 |
+
**sentence** - the transcription
|
30 |
+
**rate** - has to be the same across all examples in the dataset, if not something bad happened
|