├── .gitattributes ├── .github └── workflows │ └── python-publish.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── VoxCeleb ├── __init__.py ├── _version.py └── data │ ├── verif_exhaustive.txt.gz │ ├── verif_hard.txt.gz │ ├── verif_original.txt.gz │ ├── verif_x.txt.gz │ ├── vox1_dev_duration.txt.gz │ ├── vox1_identities.txt.gz │ ├── vox1_tst_duration.txt.gz │ ├── vox1_xdev_duration.txt.gz │ ├── vox1_xtrn_duration.txt.gz │ ├── vox2_dev_duration.txt.gz │ ├── vox2_meta.csv.gz │ ├── vox2_tst_duration.txt.gz │ └── voxceleb1.verification.dev.csv ├── setup.cfg ├── setup.py └── versioneer.py /.gitattributes: -------------------------------------------------------------------------------- 1 | VoxCeleb/_version.py export-subst 2 | -------------------------------------------------------------------------------- /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyannote/pyannote-db-voxceleb/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyannote/pyannote-db-voxceleb/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyannote/pyannote-db-voxceleb/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyannote/pyannote-db-voxceleb/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyannote/pyannote-db-voxceleb/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyannote/pyannote-db-voxceleb/HEAD/README.md -------------------------------------------------------------------------------- /VoxCeleb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyannote/pyannote-db-voxceleb/HEAD/VoxCeleb/__init__.py -------------------------------------------------------------------------------- /VoxCeleb/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyannote/pyannote-db-voxceleb/HEAD/VoxCeleb/_version.py -------------------------------------------------------------------------------- /VoxCeleb/data/verif_exhaustive.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyannote/pyannote-db-voxceleb/HEAD/VoxCeleb/data/verif_exhaustive.txt.gz -------------------------------------------------------------------------------- /VoxCeleb/data/verif_hard.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyannote/pyannote-db-voxceleb/HEAD/VoxCeleb/data/verif_hard.txt.gz -------------------------------------------------------------------------------- /VoxCeleb/data/verif_original.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyannote/pyannote-db-voxceleb/HEAD/VoxCeleb/data/verif_original.txt.gz -------------------------------------------------------------------------------- /VoxCeleb/data/verif_x.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyannote/pyannote-db-voxceleb/HEAD/VoxCeleb/data/verif_x.txt.gz -------------------------------------------------------------------------------- /VoxCeleb/data/vox1_dev_duration.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyannote/pyannote-db-voxceleb/HEAD/VoxCeleb/data/vox1_dev_duration.txt.gz -------------------------------------------------------------------------------- /VoxCeleb/data/vox1_identities.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyannote/pyannote-db-voxceleb/HEAD/VoxCeleb/data/vox1_identities.txt.gz -------------------------------------------------------------------------------- /VoxCeleb/data/vox1_tst_duration.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyannote/pyannote-db-voxceleb/HEAD/VoxCeleb/data/vox1_tst_duration.txt.gz -------------------------------------------------------------------------------- /VoxCeleb/data/vox1_xdev_duration.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyannote/pyannote-db-voxceleb/HEAD/VoxCeleb/data/vox1_xdev_duration.txt.gz -------------------------------------------------------------------------------- /VoxCeleb/data/vox1_xtrn_duration.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyannote/pyannote-db-voxceleb/HEAD/VoxCeleb/data/vox1_xtrn_duration.txt.gz -------------------------------------------------------------------------------- /VoxCeleb/data/vox2_dev_duration.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyannote/pyannote-db-voxceleb/HEAD/VoxCeleb/data/vox2_dev_duration.txt.gz -------------------------------------------------------------------------------- /VoxCeleb/data/vox2_meta.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyannote/pyannote-db-voxceleb/HEAD/VoxCeleb/data/vox2_meta.csv.gz -------------------------------------------------------------------------------- /VoxCeleb/data/vox2_tst_duration.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyannote/pyannote-db-voxceleb/HEAD/VoxCeleb/data/vox2_tst_duration.txt.gz -------------------------------------------------------------------------------- /VoxCeleb/data/voxceleb1.verification.dev.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyannote/pyannote-db-voxceleb/HEAD/VoxCeleb/data/voxceleb1.verification.dev.csv -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyannote/pyannote-db-voxceleb/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyannote/pyannote-db-voxceleb/HEAD/setup.py -------------------------------------------------------------------------------- /versioneer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyannote/pyannote-db-voxceleb/HEAD/versioneer.py --------------------------------------------------------------------------------