guoqiang wang commited on
Commit
03ec563
1 Parent(s): 3842a80

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +99 -0
README.md CHANGED
@@ -0,0 +1,99 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Dataset Summary
2
+ The Common Voice dataset consists of a unique MP3 and corresponding text file. Many of the 9,283 recorded hours in the dataset also include demographic metadata like age, sex, and accent that can help train the accuracy of speech recognition engines.
3
+
4
+ The dataset currently consists of 7,335 validated hours in 60 languages, but were always adding more voices and languages. Take a look at our Languages page to request a language or start contributing.
5
+
6
+ Supported Tasks and Leaderboards
7
+ [Needs More Information]
8
+
9
+ Languages
10
+ English
11
+
12
+ Dataset Structure
13
+ Data Instances
14
+ A typical data point comprises the path to the audio file, called path and its sentence. Additional fields include accent, age, client_id, up_votes down_votes, gender, locale and segment.
15
+
16
+ {'accent': 'netherlands', 'age': 'fourties', 'client_id': 'bbbcb732e0f422150c30ff3654bbab572e2a617da107bca22ff8b89ab2e4f124d03b6a92c48322862f60bd0179ae07baf0f9b4f9c4e11d581e0cec70f703ba54', 'down_votes': 0, 'gender': 'male', 'locale': 'nl', 'path': 'nl/clips/common_voice_nl_23522441.mp3', 'segment': "''", 'sentence': 'Ik vind dat een dubieuze procedure.', 'up_votes': 2, 'audio': {'path':nl/clips/common_voice_nl_23522441.mp3', 'array': array([-0.00048828, -0.00018311, -0.00137329, ..., 0.00079346, 0.00091553, 0.00085449], dtype=float32), 'sampling_rate': 48000} `
17
+
18
+ Data Fields
19
+ client_id: An id for which client (voice) made the recording
20
+
21
+ path: The path to the audio file
22
+
23
+ audio: A dictionary containing the path to the downloaded audio file, the decoded audio array, and the sampling rate. Note that when accessing the audio column: dataset[0]["audio"] the audio file is automatically decoded and resampled to dataset.features["audio"].sampling_rate. Decoding and resampling of a large number of audio files might take a significant amount of time. Thus it is important to first query the sample index before the "audio" column, i.e. dataset[0]["audio"] should always be preferred over dataset["audio"][0].
24
+
25
+ sentence: The sentence the user was prompted to speak
26
+
27
+ up_votes: How many upvotes the audio file has received from reviewers
28
+
29
+ down_votes: How many downvotes the audio file has received from reviewers
30
+
31
+ age: The age of the speaker.
32
+
33
+ gender: The gender of the speaker
34
+
35
+ accent: Accent of the speaker
36
+
37
+ locale: The locale of the speaker
38
+
39
+ segment: Usually empty field
40
+
41
+ Data Splits
42
+ The speech material has been subdivided into portions for dev, train, test, validated, invalidated, reported and other.
43
+
44
+ The validated data is data that has been validated with reviewers and recieved upvotes that the data is of high quality.
45
+
46
+ The invalidated data is data has been invalidated by reviewers and recieved downvotes that the data is of low quality.
47
+
48
+ The reported data is data that has been reported, for different reasons.
49
+
50
+ The other data is data that has not yet been reviewed.
51
+
52
+ The dev, test, train are all data that has been reviewed, deemed of high quality and split into dev, test and train.
53
+
54
+ Dataset Creation
55
+ Curation Rationale
56
+ [Needs More Information]
57
+
58
+ Source Data
59
+ Initial Data Collection and Normalization
60
+ [Needs More Information]
61
+
62
+ Who are the source language producers?
63
+ [Needs More Information]
64
+
65
+ Annotations
66
+ Annotation process
67
+ [Needs More Information]
68
+
69
+ Who are the annotators?
70
+ [Needs More Information]
71
+
72
+ Personal and Sensitive Information
73
+ The dataset consists of people who have donated their voice online. You agree to not attempt to determine the identity of speakers in the Common Voice dataset.
74
+
75
+ Considerations for Using the Data
76
+ Social Impact of Dataset
77
+ The dataset consists of people who have donated their voice online. You agree to not attempt to determine the identity of speakers in the Common Voice dataset.
78
+
79
+ Discussion of Biases
80
+ [More Information Needed]
81
+
82
+ Other Known Limitations
83
+ [More Information Needed]
84
+
85
+ Additional Information
86
+ Dataset Curators
87
+ [More Information Needed]
88
+
89
+ Licensing Information
90
+ Public Domain, CC-0
91
+
92
+ Citation Information
93
+ @inproceedings{commonvoice:2020,
94
+ author = {Ardila, R. and Branson, M. and Davis, K. and Henretty, M. and Kohler, M. and Meyer, J. and Morais, R. and Saunders, L. and Tyers, F. M. and Weber, G.},
95
+ title = {Common Voice: A Massively-Multilingual Speech Corpus},
96
+ booktitle = {Proceedings of the 12th Conference on Language Resources and Evaluation (LREC 2020)},
97
+ pages = {4211--4215},
98
+ year = 2020
99
+ }