Datasets:
yangwang825
commited on
Commit
•
b9cbf70
1
Parent(s):
5b6f49f
Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,45 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
task_categories:
|
3 |
+
- audio-classification
|
4 |
+
tags:
|
5 |
+
- audio
|
6 |
+
- VoxCeleb
|
7 |
+
- verification
|
8 |
+
---
|
9 |
+
|
10 |
+
# VoxCeleb 2
|
11 |
+
|
12 |
+
VoxCeleb2 contains over 1 million utterances for 6,112 celebrities, extracted from videos uploaded to YouTube.
|
13 |
+
|
14 |
+
## Verification Split
|
15 |
+
|
16 |
+
| | train | validation | test |
|
17 |
+
| :---: | :---: | :---: | :---: |
|
18 |
+
| # of speakers | 5,994 | 5,994 | 118 |
|
19 |
+
| # of samples | 982,808 | 109,201 | 36,237 |
|
20 |
+
|
21 |
+
## Data Fields
|
22 |
+
|
23 |
+
- ID (string): The ID of the sample with format `<spk_id--utt_id_start_stop>`.
|
24 |
+
- duration (float64): The duration of the segment in seconds.
|
25 |
+
- wav (string): The filepath of the waveform.
|
26 |
+
- start (int64): The start index of the segment, which is (start seconds) × (sample rate).
|
27 |
+
- stop (int64): The stop index of the segment, which is (stop seconds) × (sample rate).
|
28 |
+
- spk_id (string): The ID of the speaker.
|
29 |
+
|
30 |
+
Example:
|
31 |
+
|
32 |
+
```
|
33 |
+
{
|
34 |
+
'ID': 'id09056--00112_0_89088',
|
35 |
+
'duration': 5.568,
|
36 |
+
'wav': 'id09056/U2mRgZ1tW04/00112.wav',
|
37 |
+
'start': 0,
|
38 |
+
'stop': 89088,
|
39 |
+
'spk_id': 'id09056'
|
40 |
+
}
|
41 |
+
```
|
42 |
+
|
43 |
+
## References
|
44 |
+
|
45 |
+
- https://www.robots.ox.ac.uk/~vgg/data/voxceleb/vox2.html
|