kamilakesbi
commited on
Commit
•
3acfa1b
1
Parent(s):
7e45ffb
Update README.md
Browse files
README.md
CHANGED
@@ -2,9 +2,7 @@
|
|
2 |
dataset_info:
|
3 |
features:
|
4 |
- name: audio
|
5 |
-
dtype:
|
6 |
-
audio:
|
7 |
-
sampling_rate: 16000
|
8 |
- name: timestamps_start
|
9 |
sequence: float64
|
10 |
- name: timestamps_end
|
@@ -13,13 +11,13 @@ dataset_info:
|
|
13 |
sequence: string
|
14 |
splits:
|
15 |
- name: dev
|
16 |
-
num_bytes: 2338411143
|
17 |
num_examples: 216
|
18 |
- name: test
|
19 |
-
num_bytes: 5015872396
|
20 |
num_examples: 232
|
21 |
-
download_size:
|
22 |
-
dataset_size: 7354283539
|
23 |
configs:
|
24 |
- config_name: default
|
25 |
data_files:
|
@@ -27,4 +25,73 @@ configs:
|
|
27 |
path: data/dev-*
|
28 |
- split: test
|
29 |
path: data/test-*
|
|
|
|
|
|
|
|
|
|
|
|
|
30 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
dataset_info:
|
3 |
features:
|
4 |
- name: audio
|
5 |
+
dtype: audio
|
|
|
|
|
6 |
- name: timestamps_start
|
7 |
sequence: float64
|
8 |
- name: timestamps_end
|
|
|
11 |
sequence: string
|
12 |
splits:
|
13 |
- name: dev
|
14 |
+
num_bytes: 2338411143
|
15 |
num_examples: 216
|
16 |
- name: test
|
17 |
+
num_bytes: 5015872396
|
18 |
num_examples: 232
|
19 |
+
download_size: 7296384603
|
20 |
+
dataset_size: 7354283539
|
21 |
configs:
|
22 |
- config_name: default
|
23 |
data_files:
|
|
|
25 |
path: data/dev-*
|
26 |
- split: test
|
27 |
path: data/test-*
|
28 |
+
tags:
|
29 |
+
- speaker diarization
|
30 |
+
- voice activity detection
|
31 |
+
license: cc-by-4.0
|
32 |
+
language:
|
33 |
+
- en
|
34 |
---
|
35 |
+
|
36 |
+
|
37 |
+
# Dataset Card for the Voxconverse dataset
|
38 |
+
|
39 |
+
VoxConverse is an audio-visual diarisation dataset consisting of multispeaker clips of human speech, extracted from YouTube videos. Updates and additional information about the dataset can be found on the [dataset website](https://www.robots.ox.ac.uk/~vgg/data/voxconverse/index.html).
|
40 |
+
|
41 |
+
Note: This dataset has been preprocessed using [diarizers](https://github.com/huggingface/diarizers/tree/main/datasets). It makes the dataset compatible with diarizers to fine-tune [pyannote](https://huggingface.co/pyannote/segmentation-3.0) segmentation models.
|
42 |
+
|
43 |
+
|
44 |
+
# Example Usage
|
45 |
+
|
46 |
+
```
|
47 |
+
from datasets import load_dataset
|
48 |
+
ds = load_dataset("diarizers-community/voxconverse")
|
49 |
+
|
50 |
+
print(ds)
|
51 |
+
```
|
52 |
+
|
53 |
+
gives:
|
54 |
+
|
55 |
+
```
|
56 |
+
DatasetDict({
|
57 |
+
train: Dataset({
|
58 |
+
features: ['audio', 'timestamps_start', 'timestamps_end', 'speakers'],
|
59 |
+
num_rows: 136
|
60 |
+
})
|
61 |
+
validation: Dataset({
|
62 |
+
features: ['audio', 'timestamps_start', 'timestamps_end', 'speakers'],
|
63 |
+
num_rows: 18
|
64 |
+
})
|
65 |
+
test: Dataset({
|
66 |
+
features: ['audio', 'timestamps_start', 'timestamps_end', 'speakers'],
|
67 |
+
num_rows: 16
|
68 |
+
})
|
69 |
+
})
|
70 |
+
```
|
71 |
+
|
72 |
+
# Dataset source
|
73 |
+
|
74 |
+
- Homepage: https://www.robots.ox.ac.uk/~vgg/data/voxconverse/
|
75 |
+
- Repository: https://github.com/joonson/voxconverse?tab=readme-ov-file
|
76 |
+
- Preprocessed using [diarizers](https://github.com/kamilakesbi/diarizers/tree/main/datasets)
|
77 |
+
|
78 |
+
|
79 |
+
# Citation
|
80 |
+
|
81 |
+
```
|
82 |
+
@article{chung2020spot,
|
83 |
+
title={Spot the conversation: speaker diarisation in the wild},
|
84 |
+
author={Chung, Joon Son and Huh, Jaesung and Nagrani, Arsha and Afouras, Triantafyllos and Zisserman, Andrew},
|
85 |
+
booktitle={Interspeech},
|
86 |
+
year={2020}
|
87 |
+
}
|
88 |
+
```
|
89 |
+
|
90 |
+
# Contribution
|
91 |
+
|
92 |
+
Thanks to [@kamilakesbi](https://huggingface.co/kamilakesbi) and [@sanchit-gandhi](https://huggingface.co/sanchit-gandhi) for adding this dataset.
|
93 |
+
|
94 |
+
|
95 |
+
|
96 |
+
|
97 |
+
|