dustalov Aliskin commited on
Commit
20278fe
1 Parent(s): a6b4496

More details about the dataset (#6)

Browse files

- More details about the dataset (baa1e74e4326e5461258f0316ce1a4381bff537d)


Co-authored-by: Smirnova Alisa <Aliskin@users.noreply.huggingface.co>

Files changed (1) hide show
  1. README.md +75 -1
README.md CHANGED
@@ -37,4 +37,78 @@ tags:
37
 
38
  ### Dataset Summary
39
 
40
- CrowdSpeech is the first publicly available large-scale dataset of crowdsourced audio transcriptions.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
37
 
38
  ### Dataset Summary
39
 
40
+ CrowdSpeech is the first publicly available large-scale dataset of crowdsourced audio transcriptions.
41
+ The dataset was constructed by annotation [LibriSpeech](https://www.openslr.org/12) on [Toloka crowdsourcing platform](https://toloka.ai).
42
+ CrowdSpeech consists of 22K instances having around 155K annotations obtained from crowd workers.
43
+
44
+
45
+ ### Supported Tasks and Leaderboards
46
+ Aggregation of crowd transcriptions.
47
+
48
+ ### Languages
49
+ English
50
+
51
+ ## Dataset Structure
52
+
53
+ ### Data Instances
54
+
55
+ A data instance contains a url to the audio recording, a list of transcriptions along with the corresponding performers identifiers and ground truth.
56
+ For each data instance, seven crowdsourced transcriptions are provided.
57
+
58
+ ```
59
+ {'task': 'https://tlk.s3.yandex.net/annotation_tasks/librispeech/train-clean/0.mp3',
60
+ 'transcriptions': "had laid before her a pair of alternatives now of course you're completely your own mistress and are as free as the bird on the bough i don't mean you were not so before but you're at present on a different footing | had laid before her a pair of alternatives now of course you are completely your own mistress and are as free as the bird on the bowl i don't mean you were not so before but you were present on a different footing | had laid before her a pair of alternatives now of course you're completely your own mistress and are as free as the bird on the bow i don't mean you are not so before but you're at present on a different footing | had laid before her a pair of alternatives now of course you're completely your own mistress and are as free as the bird on the bow i don't mean you are not so before but you're at present on a different footing | laid before her a pair of alternativesnow of course you're completely your own mistress and are as free as the bird on the bow i don't mean you're not so before but you're at present on a different footing | had laid before her a peril alternatives now of course your completely your own mistress and as free as a bird as the back bowl i don't mean you were not so before but you are present on a different footing | a lady before her a pair of alternatives now of course you're completely your own mistress and rs free as the bird on the ball i don't need you or not so before but you're at present on a different footing",
61
+ 'performers': '1154 | 3449 | 3097 | 461 | 3519 | 920 | 3660',
62
+ 'gt': "had laid before her a pair of alternatives now of course you're completely your own mistress and are as free as the bird on the bough i don't mean you were not so before but you're at present on a different footing"}
63
+ ```
64
+
65
+ ### Data Fields
66
+
67
+ * task: a string containing a url of the audio recording
68
+ * transcriptions: a list of the crowdsourced transcriptions separated by '|'
69
+ * performers: the corresponding performers' identifiers.
70
+ * gt: ground truth transcription
71
+
72
+ ### Data Splits
73
+
74
+ There are five splits in the data: train, test, test.other, dev.clean and dev.other.
75
+ Splits train, test and dev.clean correspond to *clean* part of LibriSpeech that contains audio recordings of higher quality with accents
76
+ of the speaker being closer to the US English. Splits dev.other and test.other correspond to *other* part of LibriSpeech with
77
+ the recordings more challenging for recognition. The audio recordings are gender-balanced.
78
+
79
+ ## Dataset Creation
80
+
81
+ ### Source Data
82
+
83
+ [LibriSpeech](https://www.openslr.org/12) is a corpus of approximately 1000 hours of 16kHz read English speech.
84
+
85
+ ### Annotations
86
+
87
+ Annotation was done on [Toloka crowdsourcing platform](https://toloka.ai) with overlap of 7 (that is, each task was performed by 7 annotators).
88
+
89
+ Only annotators who self-reported the knowledge of English had access to the annotation task.
90
+ Additionally, annotators had to pass *Entrance Exam*. For this, we ask all incoming eligible workers to annotate ten audio
91
+ recordings. We then compute our target metric — Word Error Rate (WER) — on these recordings and accept to the main task all workers
92
+ who achieve WER of 40% or less (the smaller the value of the metric, the higher the quality of annotation).
93
+
94
+ The Toloka crowdsourcing platform associates workers with unique identifiers and returns these identifiers to the requester.
95
+ To further protect the data, we additionally encode each identifier with an integer that is eventually reported in our released datasets.
96
+
97
+ See more details in the [paper](https://arxiv.org/pdf/2107.01091.pdf).
98
+
99
+ ### Citation Information
100
+
101
+ ```
102
+ @inproceedings{CrowdSpeech,
103
+ author = {Pavlichenko, Nikita and Stelmakh, Ivan and Ustalov, Dmitry},
104
+ title = {{CrowdSpeech and Vox~DIY: Benchmark Dataset for Crowdsourced Audio Transcription}},
105
+ year = {2021},
106
+ booktitle = {Proceedings of the Neural Information Processing Systems Track on Datasets and Benchmarks},
107
+ eprint = {2107.01091},
108
+ eprinttype = {arxiv},
109
+ eprintclass = {cs.SD},
110
+ url = {https://openreview.net/forum?id=3_hgF1NAXU7},
111
+ language = {english},
112
+ pubstate = {forthcoming},
113
+ }
114
+ ```