File size: 1,331 Bytes
2002767 53415df 2002767 53415df | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 | ---
title: VoxCeleb2 Dataset
license: mit
dataset_info:
features:
- name: audio
dtype: audio
- name: speaker_id
dtype: string
- name: video_id
dtype: string
task_categories:
- automatic-speech-recognition
- speaker-verification
- audio-classification
language:
- en
pretty_name: VoxCeleb2 Dataset
size_categories:
- 100K<n<1M
---
# VoxCeleb2 Dataset
This is the VoxCeleb2 dataset, a large-scale speaker identification dataset.
## Dataset Description
VoxCeleb2 contains over 1 million utterances for 6,112 celebrities, extracted from videos uploaded to YouTube.
## Files
- `vox2_dev_mp4_part*`: Multipart archive containing MP4 video files
- `vox2_dev_txt`: Text files with speaker/utterance metadata
- `vox2_meta.csv`: Dataset metadata
## Usage
To extract the multipart archive:
```bash
# Using 7zip
7z x vox2_dev_mp4_partaa
# Or using cat (Linux/Mac)
cat vox2_dev_mp4_parta* > combined.tar
tar -xf combined.tar
```
## Citation
If you use this dataset, please cite:
```
@inproceedings{chung2018voxceleb2,
title={VoxCeleb2: Deep Speaker Recognition},
author={Chung, Joon Son and Nagrani, Arsha and Zisserman, Andrew},
booktitle={INTERSPEECH},
year={2018}
}
```
## License
Please refer to the original VoxCeleb2 license terms.
|