Karen Hambardzumyan commited on
Commit
420fb36
1 Parent(s): 2ba0fd9

Version 9.0

Browse files
Files changed (3) hide show
  1. common_voice_9_0.py +246 -0
  2. languages.py +1 -0
  3. release_stats.py +2881 -0
common_voice_9_0.py ADDED
@@ -0,0 +1,246 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # coding=utf-8
2
+ # Copyright 2021 The HuggingFace Datasets Authors and the current dataset script contributor.
3
+ #
4
+ # Licensed under the Apache License, Version 2.0 (the "License");
5
+ # you may not use this file except in compliance with the License.
6
+ # You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS,
12
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ # See the License for the specific language governing permissions and
14
+ # limitations under the License.
15
+ """ Common Voice Dataset"""
16
+
17
+
18
+ import csv
19
+ import os
20
+ import urllib
21
+
22
+ import datasets
23
+ import requests
24
+ from datasets.tasks import AutomaticSpeechRecognition
25
+ from datasets.utils.py_utils import size_str
26
+ from huggingface_hub import HfApi, HfFolder
27
+
28
+ from .languages import LANGUAGES
29
+ from .release_stats import STATS
30
+
31
+ _CITATION = """\
32
+ @inproceedings{commonvoice:2020,
33
+ 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.},
34
+ title = {Common Voice: A Massively-Multilingual Speech Corpus},
35
+ booktitle = {Proceedings of the 12th Conference on Language Resources and Evaluation (LREC 2020)},
36
+ pages = {4211--4215},
37
+ year = 2020
38
+ }
39
+ """
40
+
41
+ _HOMEPAGE = "https://commonvoice.mozilla.org/en/datasets"
42
+
43
+ _LICENSE = "https://creativecommons.org/publicdomain/zero/1.0/"
44
+
45
+ _API_URL = "https://commonvoice.mozilla.org/api/v1"
46
+
47
+
48
+ class CommonVoiceConfig(datasets.BuilderConfig):
49
+ """BuilderConfig for CommonVoice."""
50
+
51
+ def __init__(self, name, version, **kwargs):
52
+ self.language = kwargs.pop("language", None)
53
+ self.release_date = kwargs.pop("release_date", None)
54
+ self.num_clips = kwargs.pop("num_clips", None)
55
+ self.num_speakers = kwargs.pop("num_speakers", None)
56
+ self.validated_hr = kwargs.pop("validated_hr", None)
57
+ self.total_hr = kwargs.pop("total_hr", None)
58
+ self.size_bytes = kwargs.pop("size_bytes", None)
59
+ self.size_human = size_str(self.size_bytes)
60
+ description = (
61
+ f"Common Voice speech to text dataset in {self.language} released on {self.release_date}. "
62
+ f"The dataset comprises {self.validated_hr} hours of validated transcribed speech data "
63
+ f"out of {self.total_hr} hours in total from {self.num_speakers} speakers. "
64
+ f"The dataset contains {self.num_clips} audio clips and has a size of {self.size_human}."
65
+ )
66
+ super(CommonVoiceConfig, self).__init__(
67
+ name=name, version=datasets.Version(version), description=description, **kwargs
68
+ )
69
+
70
+
71
+ class CommonVoice(datasets.GeneratorBasedBuilder):
72
+ DEFAULT_CONFIG_NAME = "en"
73
+ DEFAULT_WRITER_BATCH_SIZE = 1000
74
+
75
+ BUILDER_CONFIGS = [
76
+ CommonVoiceConfig(
77
+ name=lang,
78
+ version=STATS["version"],
79
+ language=LANGUAGES[lang],
80
+ release_date=STATS["date"],
81
+ num_clips=lang_stats["clips"],
82
+ num_speakers=lang_stats["users"],
83
+ validated_hr=float(lang_stats["validHrs"]),
84
+ total_hr=float(lang_stats["totalHrs"]),
85
+ size_bytes=int(lang_stats["size"]),
86
+ )
87
+ for lang, lang_stats in STATS["locales"].items()
88
+ ]
89
+
90
+ def _info(self):
91
+ total_languages = len(STATS["locales"])
92
+ total_valid_hours = STATS["totalValidHrs"]
93
+ description = (
94
+ "Common Voice is Mozilla's initiative to help teach machines how real people speak. "
95
+ f"The dataset currently consists of {total_valid_hours} validated hours of speech "
96
+ f" in {total_languages} languages, but more voices and languages are always added."
97
+ )
98
+ features = datasets.Features(
99
+ {
100
+ "client_id": datasets.Value("string"),
101
+ "path": datasets.Value("string"),
102
+ "audio": datasets.features.Audio(sampling_rate=48_000),
103
+ "sentence": datasets.Value("string"),
104
+ "up_votes": datasets.Value("int64"),
105
+ "down_votes": datasets.Value("int64"),
106
+ "age": datasets.Value("string"),
107
+ "gender": datasets.Value("string"),
108
+ "accent": datasets.Value("string"),
109
+ "locale": datasets.Value("string"),
110
+ "segment": datasets.Value("string"),
111
+ }
112
+ )
113
+
114
+ return datasets.DatasetInfo(
115
+ description=description,
116
+ features=features,
117
+ supervised_keys=None,
118
+ homepage=_HOMEPAGE,
119
+ license=_LICENSE,
120
+ citation=_CITATION,
121
+ version=self.config.version,
122
+ #task_templates=[
123
+ # AutomaticSpeechRecognition(audio_file_path_column="path", transcription_column="sentence")
124
+ #],
125
+ )
126
+
127
+ def _get_bundle_url(self, locale, url_template):
128
+ # path = encodeURIComponent(path)
129
+ path = url_template.replace("{locale}", locale)
130
+ path = urllib.parse.quote(path.encode("utf-8"), safe="~()*!.'")
131
+ # use_cdn = self.config.size_bytes < 20 * 1024 * 1024 * 1024
132
+ # response = requests.get(f"{_API_URL}/bucket/dataset/{path}/{use_cdn}", timeout=10.0).json()
133
+ response = requests.get(f"{_API_URL}/bucket/dataset/{path}", timeout=10.0).json()
134
+ return response["url"]
135
+
136
+ def _log_download(self, locale, bundle_version, auth_token):
137
+ if isinstance(auth_token, bool):
138
+ auth_token = HfFolder().get_token()
139
+ email = HfApi().whoami(auth_token)["email"]
140
+ payload = {"email": email, "locale": locale, "dataset": bundle_version}
141
+ requests.post(f"{_API_URL}/{locale}/downloaders", json=payload).json()
142
+
143
+ def _split_generators(self, dl_manager):
144
+ """Returns SplitGenerators."""
145
+ hf_auth_token = dl_manager.download_config.use_auth_token
146
+ if hf_auth_token is None:
147
+ raise ConnectionError("Please set use_auth_token=True or use_auth_token='<TOKEN>' to download this dataset")
148
+
149
+ bundle_url_template = STATS["bundleURLTemplate"]
150
+ bundle_version = bundle_url_template.split("/")[0]
151
+ dl_manager.download_config.ignore_url_params = True
152
+
153
+ self._log_download(self.config.name, bundle_version, hf_auth_token)
154
+ archive_path = dl_manager.download(self._get_bundle_url(self.config.name, bundle_url_template))
155
+ local_extracted_archive = dl_manager.extract(archive_path) if not dl_manager.is_streaming else None
156
+
157
+ if self.config.version < datasets.Version("5.0.0"):
158
+ path_to_data = ""
159
+ else:
160
+ path_to_data = "/".join([bundle_version, self.config.name])
161
+ path_to_clips = "/".join([path_to_data, "clips"]) if path_to_data else "clips"
162
+
163
+ return [
164
+ datasets.SplitGenerator(
165
+ name=datasets.Split.TRAIN,
166
+ gen_kwargs={
167
+ "local_extracted_archive": local_extracted_archive,
168
+ "archive_iterator": dl_manager.iter_archive(archive_path),
169
+ "metadata_filepath": "/".join([path_to_data, "train.tsv"]) if path_to_data else "train.tsv",
170
+ "path_to_clips": path_to_clips,
171
+ },
172
+ ),
173
+ datasets.SplitGenerator(
174
+ name=datasets.Split.TEST,
175
+ gen_kwargs={
176
+ "local_extracted_archive": local_extracted_archive,
177
+ "archive_iterator": dl_manager.iter_archive(archive_path),
178
+ "metadata_filepath": "/".join([path_to_data, "test.tsv"]) if path_to_data else "test.tsv",
179
+ "path_to_clips": path_to_clips,
180
+ },
181
+ ),
182
+ datasets.SplitGenerator(
183
+ name=datasets.Split.VALIDATION,
184
+ gen_kwargs={
185
+ "local_extracted_archive": local_extracted_archive,
186
+ "archive_iterator": dl_manager.iter_archive(archive_path),
187
+ "metadata_filepath": "/".join([path_to_data, "dev.tsv"]) if path_to_data else "dev.tsv",
188
+ "path_to_clips": path_to_clips,
189
+ },
190
+ ),
191
+ datasets.SplitGenerator(
192
+ name="other",
193
+ gen_kwargs={
194
+ "local_extracted_archive": local_extracted_archive,
195
+ "archive_iterator": dl_manager.iter_archive(archive_path),
196
+ "metadata_filepath": "/".join([path_to_data, "other.tsv"]) if path_to_data else "other.tsv",
197
+ "path_to_clips": path_to_clips,
198
+ },
199
+ ),
200
+ datasets.SplitGenerator(
201
+ name="invalidated",
202
+ gen_kwargs={
203
+ "local_extracted_archive": local_extracted_archive,
204
+ "archive_iterator": dl_manager.iter_archive(archive_path),
205
+ "metadata_filepath": "/".join([path_to_data, "invalidated.tsv"]) if path_to_data else "invalidated.tsv",
206
+ "path_to_clips": path_to_clips,
207
+ },
208
+ ),
209
+ ]
210
+
211
+ def _generate_examples(self, local_extracted_archive, archive_iterator, metadata_filepath, path_to_clips):
212
+ """Yields examples."""
213
+ data_fields = list(self._info().features.keys())
214
+
215
+ metadata = {}
216
+ metadata_found = False
217
+ for path, f in archive_iterator:
218
+ if path == metadata_filepath:
219
+ metadata_found = True
220
+ lines = (line.decode("utf-8") for line in f)
221
+ reader = csv.DictReader(lines, delimiter="\t", quoting=csv.QUOTE_NONE)
222
+ for row in reader:
223
+ # set absolute path for mp3 audio file
224
+ if not row["path"].endswith(".mp3"):
225
+ row["path"] += ".mp3"
226
+ row["path"] = os.path.join(path_to_clips, row["path"])
227
+ # accent -> accents in CV 8.0
228
+ if "accents" in row:
229
+ row["accent"] = row["accents"]
230
+ del row["accents"]
231
+ # if data is incomplete, fill with empty values
232
+ for field in data_fields:
233
+ if field not in row:
234
+ row[field] = ""
235
+ metadata[row["path"]] = row
236
+ elif path.startswith(path_to_clips):
237
+ assert metadata_found, "Found audio clips before the metadata TSV file."
238
+ if not metadata:
239
+ break
240
+ if path in metadata:
241
+ result = metadata[path]
242
+ # set audio feature
243
+ result["audio"] = {"path": path, "bytes": f.read()}
244
+ result["path"] = os.path.join(local_extracted_archive, path) if local_extracted_archive else None
245
+
246
+ yield path, result
languages.py ADDED
@@ -0,0 +1 @@
 
 
1
+ LANGUAGES = {'mk': 'Macedonian', 'fr': 'French', 'tr': 'Turkish', 'cv': 'Chuvash', 'cs': 'Czech', 'ca': 'Catalan', 'sv-SE': 'Swedish', 'pl': 'Polish', 'zh-TW': 'Chinese (Taiwan)', 'he': 'Hebrew', 'nn-NO': 'Norwegian Nynorsk', 'zh-CN': 'Chinese (China)', 'de': 'German', 'tt': 'Tatar', 'el': 'Greek', 'cy': 'Welsh', 'nl': 'Dutch', 'sq': 'Albanian', 'fy-NL': 'Frisian', 'sk': 'Slovak', 'id': 'Indonesian', 'th': 'Thai', 'ru': 'Russian', 'ga-IE': 'Irish', 'ko': 'Korean', 'bn': 'Bengali', 'it': 'Italian', 'uz': 'Uzbek', 'or': 'Odia', 'da': 'Danish', 'ka': 'Georgian', 'ro': 'Romanian', 'ta': 'Tamil', 'hu': 'Hungarian', 'uk': 'Ukrainian', 'nb-NO': 'Norwegian Bokmål', 'kw': 'Cornish', 'es': 'Spanish', 'te': 'Telugu', 'ne-NP': 'Nepali', 'sr': 'Serbian', 'sl': 'Slovenian', 'kab': 'Kabyle', 'br': 'Breton', 'et': 'Estonian', 'as': 'Assamese', 'kk': 'Kazakh', 'az': 'Azerbaijani', 'sah': 'Sakha', 'kpv': 'Komi-Zyrian', 'ky': 'Kyrgyz', 'fi': 'Finnish', 'is': 'Icelandic', 'ja': 'Japanese', 'zh-HK': 'Chinese (Hong Kong)', 'hsb': 'Sorbian, Upper', 'fo': 'Faroese', 'myv': 'Erzya', 'cnh': 'Hakha Chin', 'dsb': 'Sorbian, Lower', 'ar': 'Arabic', 'an': 'Aragonese', 'ia': 'Interlingua', 'ast': 'Asturian', 'bxr': 'Buryat', 'cak': 'Kaqchikel', 'eo': 'Esperanto', 'ur': 'Urdu', 'vi': 'Vietnamese', 'mn': 'Mongolian', 'oc': 'Occitan', 'fa': 'Persian', 'ace': 'Acehnese', 'rm-sursilv': 'Romansh Sursilvan', 'mdf': 'Moksha', 'sc': 'Sardinian', 'eu': 'Basque', 'bg': 'Bulgarian', 'af': 'Afrikaans', 'ab': 'Abkhaz', 'ady': 'Adyghe', 'am': 'Amharic', 'uby': 'Ubykh', 'mrj': 'Hill Mari', 'mhr': 'Meadow Mari', 'udm': 'Udmurt', 'vot': 'Votic', 'dv': 'Dhivehi', 'hr': 'Croatian', 'rw': 'Kinyarwanda', 'izh': 'Izhorian', 'lt': 'Lithuanian', 'lv': 'Latvian', 'gl': 'Galician', 'tg': 'Tajik', 'lij': 'Ligurian', 'si': 'Sinhala', 'ha': 'Hausa', 'ba': 'Bashkir', 'ml': 'Malayalam', 'ff': 'Fulah', 'rm-vallader': 'Romansh Vallader', 'syr': 'Syriac', 'mt': 'Maltese', 'pt': 'Portuguese', 'sw': 'Swahili', 'pa-IN': 'Punjabi', 'be': 'Belarusian', 'mg': 'Malagasy', 'arn': 'Mapudungun', 'kbd': 'Kabardian', 'scn': 'Sicilian', 'my': 'Burmese', 'lg': 'Luganda', 'kaa': 'Karakalpak', 'tl': 'Tagalog', 'vec': 'Venetian', 'hy-AM': 'Armenian', 'hi': 'Hindi', 'hyw': 'Armenian Western', 'kmr': 'Kurmanji Kurdish', 'co': 'Corsican', 'ckb': 'Central Kurdish', 'gn': 'Guarani', 'bas': 'Basaa', 'yue': 'Cantonese', 'ms': 'Malay', 'ps': 'Pashto', 'ht': 'Haitian', 'mos': 'Mossi', 'mr': 'Marathi', 'ug': 'Uyghur', 'so': 'Somali', 'shi': 'Shilha', 'mai': 'Maithili', 'pap-AW': 'Papiamento (Aruba)', 'nia': 'Nias', 'tw': 'Twi', 'yo': 'Yoruba', 'nyn': 'Runyankole', 'sat': 'Santali (Ol Chiki)', 'ie': 'Interlingue', 'nan-tw': 'Taiwanese (Minnan)', 'ki': 'Kikuyu', 'yi': 'Yiddish', 'ty': 'Tahitian', 'ig': 'Igbo', 'ti': 'Tigrinya', 'quc': "K'iche'", 'tig': 'Tigre', 'mni': 'Meetei Lon', 'tk': 'Turkmen', 'quy': 'Quechua Chanka', 'bs': 'Bosnian', 'km': 'Khmer', 'gom': 'Goan Konkani', 'knn': 'Konkani (Devanagari)', 'en': 'English'}
release_stats.py ADDED
@@ -0,0 +1,2881 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ STATS = {
2
+ "bundleURLTemplate": "cv-corpus-9.0-2022-04-27/cv-corpus-9.0-2022-04-27-{locale}.tar.gz",
3
+ "date": "2022-01-19",
4
+ "name": "Common Voice Corpus 9.0",
5
+ "multilingual": True,
6
+ "locales": {
7
+ "en": {
8
+ "duration": 10390463635,
9
+ "buckets": {
10
+ "dev": 16326,
11
+ "invalidated": 239065,
12
+ "other": 251332,
13
+ "reported": 3558,
14
+ "test": 16326,
15
+ "train": 864448,
16
+ "validated": 1530385,
17
+ },
18
+ "reportedSentences": 3500,
19
+ "clips": 2020782,
20
+ "splits": {
21
+ "accent": {"": 1},
22
+ "age": {
23
+ "": 0.37,
24
+ "twenties": 0.24,
25
+ "sixties": 0.04,
26
+ "thirties": 0.13,
27
+ "teens": 0.06,
28
+ "seventies": 0.01,
29
+ "fourties": 0.1,
30
+ "fifties": 0.04,
31
+ "eighties": 0,
32
+ "nineties": 0,
33
+ },
34
+ "gender": {"": 0.37, "male": 0.46, "female": 0.16, "other": 0.02},
35
+ },
36
+ "users": 79398,
37
+ "size": 75356163484,
38
+ "checksum": "8b82525e6adb8382e28eabfed1beeedd3f315c1d3cdf7445a3ff33743f42025d",
39
+ "avgDurationSecs": 5.142,
40
+ "validDurationSecs": 7868938.703,
41
+ "totalHrs": 2886.23,
42
+ "validHrs": 2185.81,
43
+ },
44
+ "fa": {
45
+ "buckets": {
46
+ "dev": 9728,
47
+ "invalidated": 13124,
48
+ "other": 30224,
49
+ "reported": 1949,
50
+ "test": 9728,
51
+ "train": 23425,
52
+ "validated": 284178,
53
+ },
54
+ "reportedSentences": 1941,
55
+ "clips": 327526,
56
+ "splits": {
57
+ "accent": {"": 1},
58
+ "age": {
59
+ "": 0.24,
60
+ "twenties": 0.32,
61
+ "thirties": 0.38,
62
+ "fifties": 0.02,
63
+ "fourties": 0.02,
64
+ "teens": 0.02,
65
+ "sixties": 0,
66
+ },
67
+ "gender": {"": 0.21, "male": 0.72, "female": 0.07, "other": 0},
68
+ },
69
+ "users": 4016,
70
+ "duration": 1316470688,
71
+ "size": 9804861437,
72
+ "checksum": "5b351ade3858fd9636691569dc9918e7270fedbc1a68fc47b4fe82bf6d34fd9a",
73
+ "avgDurationSecs": 4.019,
74
+ "validDurationSecs": 1142236.058,
75
+ "totalHrs": 365.68,
76
+ "validHrs": 317.28,
77
+ },
78
+ "fr": {
79
+ "buckets": {
80
+ "dev": 16021,
81
+ "invalidated": 53389,
82
+ "other": 1444,
83
+ "reported": 5989,
84
+ "test": 16021,
85
+ "train": 430464,
86
+ "validated": 596858,
87
+ },
88
+ "duration": 3247351570,
89
+ "reportedSentences": 5914,
90
+ "clips": 651691,
91
+ "splits": {
92
+ "accent": {"": 1},
93
+ "age": {
94
+ "twenties": 0.18,
95
+ "thirties": 0.18,
96
+ "": 0.35,
97
+ "teens": 0.03,
98
+ "fourties": 0.13,
99
+ "fifties": 0.09,
100
+ "sixties": 0.03,
101
+ "seventies": 0.01,
102
+ "eighties": 0,
103
+ "nineties": 0,
104
+ },
105
+ "gender": {"male": 0.62, "": 0.27, "female": 0.11, "other": 0.01},
106
+ },
107
+ "users": 16082,
108
+ "size": 23747554124,
109
+ "checksum": "0e11673e55bbcf30244d5da0c3a8ab07f7deb96ae98b3d2ae752b51c2caa0ea2",
110
+ "avgDurationSecs": 4.983,
111
+ "validDurationSecs": 2974120.808,
112
+ "totalHrs": 902.04,
113
+ "validHrs": 826.14,
114
+ },
115
+ "es": {
116
+ "buckets": {
117
+ "dev": 15440,
118
+ "invalidated": 47683,
119
+ "other": 191609,
120
+ "reported": 1632,
121
+ "test": 15440,
122
+ "train": 214001,
123
+ "validated": 289210,
124
+ },
125
+ "duration": 2661738714,
126
+ "reportedSentences": 1623,
127
+ "clips": 528502,
128
+ "splits": {
129
+ "accent": {"": 1},
130
+ "age": {
131
+ "thirties": 0.11,
132
+ "": 0.32,
133
+ "fifties": 0.08,
134
+ "twenties": 0.25,
135
+ "teens": 0.03,
136
+ "fourties": 0.06,
137
+ "sixties": 0.15,
138
+ "eighties": 0,
139
+ "seventies": 0,
140
+ "nineties": 0,
141
+ },
142
+ "gender": {"male": 0.51, "": 0.32, "other": 0.01, "female": 0.17},
143
+ },
144
+ "users": 22741,
145
+ "size": 19549932331,
146
+ "checksum": "b138e13fd63ffdf8668120ad457376c257756ca8e4bcad6485185683fa2f520b",
147
+ "avgDurationSecs": 5.036,
148
+ "validDurationSecs": 1456572.451,
149
+ "totalHrs": 739.37,
150
+ "validHrs": 404.6,
151
+ },
152
+ "sl": {
153
+ "buckets": {
154
+ "dev": 1229,
155
+ "invalidated": 207,
156
+ "other": 832,
157
+ "reported": 28,
158
+ "test": 1193,
159
+ "train": 1377,
160
+ "validated": 8975,
161
+ },
162
+ "duration": 38735110,
163
+ "reportedSentences": 29,
164
+ "clips": 10014,
165
+ "splits": {
166
+ "accent": {"": 1},
167
+ "age": {
168
+ "twenties": 0.5,
169
+ "teens": 0.09,
170
+ "": 0.18,
171
+ "sixties": 0.08,
172
+ "fifties": 0.08,
173
+ "fourties": 0.02,
174
+ "thirties": 0.05,
175
+ },
176
+ "gender": {"female": 0.15, "male": 0.67, "": 0.18, "other": 0},
177
+ },
178
+ "users": 125,
179
+ "size": 281432145,
180
+ "checksum": "38a3bfd9e5dfe83cd5d6eb44851b8416449cc0675e965b4016a1ad2365010062",
181
+ "avgDurationSecs": 3.868,
182
+ "validDurationSecs": 34716.159,
183
+ "totalHrs": 10.75,
184
+ "validHrs": 9.64,
185
+ },
186
+ "kab": {
187
+ "buckets": {
188
+ "dev": 14874,
189
+ "invalidated": 19127,
190
+ "other": 100690,
191
+ "reported": 4798,
192
+ "test": 14874,
193
+ "train": 140104,
194
+ "validated": 596082,
195
+ },
196
+ "duration": 2380327432,
197
+ "reportedSentences": 4793,
198
+ "clips": 715899,
199
+ "splits": {
200
+ "accent": {"": 1},
201
+ "age": {
202
+ "fourties": 0.09,
203
+ "thirties": 0.3,
204
+ "": 0.27,
205
+ "fifties": 0.19,
206
+ "twenties": 0.12,
207
+ "eighties": 0,
208
+ "teens": 0,
209
+ "sixties": 0.03,
210
+ "seventies": 0,
211
+ },
212
+ "gender": {"male": 0.55, "": 0.25, "female": 0.2, "other": 0},
213
+ },
214
+ "users": 1431,
215
+ "size": 17959985919,
216
+ "checksum": "45834be25ed44de041ca41c722344bc0743bae556b24e58278771e9a9db1969c",
217
+ "avgDurationSecs": 3.325,
218
+ "validDurationSecs": 1981942.057,
219
+ "totalHrs": 661.2,
220
+ "validHrs": 550.53,
221
+ },
222
+ "cy": {
223
+ "buckets": {
224
+ "dev": 5131,
225
+ "invalidated": 4226,
226
+ "other": 17588,
227
+ "reported": 149,
228
+ "test": 5144,
229
+ "train": 7459,
230
+ "validated": 86743,
231
+ },
232
+ "duration": 524128257,
233
+ "reportedSentences": 150,
234
+ "clips": 108557,
235
+ "splits": {
236
+ "accent": {"": 1},
237
+ "age": {
238
+ "fourties": 0.16,
239
+ "twenties": 0.14,
240
+ "sixties": 0.07,
241
+ "fifties": 0.09,
242
+ "": 0.42,
243
+ "thirties": 0.09,
244
+ "seventies": 0.01,
245
+ "eighties": 0,
246
+ "teens": 0.02,
247
+ },
248
+ "gender": {"male": 0.33, "female": 0.25, "": 0.41, "other": 0.01},
249
+ },
250
+ "users": 1695,
251
+ "size": 3878708024,
252
+ "checksum": "b087632306ff2fb11da1753c5adfda39634c727abc7e027be13c6c0d652b71a1",
253
+ "avgDurationSecs": 4.828,
254
+ "validDurationSecs": 418807.239,
255
+ "totalHrs": 145.59,
256
+ "validHrs": 116.33,
257
+ },
258
+ "ca": {
259
+ "buckets": {
260
+ "dev": 16077,
261
+ "invalidated": 37122,
262
+ "other": 42468,
263
+ "reported": 2172,
264
+ "test": 16078,
265
+ "train": 475770,
266
+ "validated": 607599,
267
+ },
268
+ "duration": 3732735162,
269
+ "reportedSentences": 2131,
270
+ "clips": 687189,
271
+ "splits": {
272
+ "accent": {"": 1},
273
+ "age": {
274
+ "thirties": 0.11,
275
+ "fifties": 0.21,
276
+ "fourties": 0.13,
277
+ "twenties": 0.07,
278
+ "": 0.17,
279
+ "sixties": 0.28,
280
+ "teens": 0.01,
281
+ "seventies": 0.03,
282
+ "eighties": 0,
283
+ "nineties": 0,
284
+ },
285
+ "gender": {"male": 0.63, "": 0.18, "female": 0.19, "other": 0},
286
+ },
287
+ "users": 6665,
288
+ "size": 26810695121,
289
+ "checksum": "9ce115587d1641da7dba3b3a8251809d71c9c08e539bfcc3a2c0a17a518b2299",
290
+ "avgDurationSecs": 5.432,
291
+ "validDurationSecs": 3300411.025,
292
+ "totalHrs": 1036.87,
293
+ "validHrs": 916.78,
294
+ },
295
+ "de": {
296
+ "buckets": {
297
+ "dev": 16007,
298
+ "invalidated": 44525,
299
+ "other": 5115,
300
+ "reported": 6726,
301
+ "test": 16007,
302
+ "train": 420163,
303
+ "validated": 746482,
304
+ },
305
+ "duration": 4080408545,
306
+ "reportedSentences": 6702,
307
+ "clips": 796122,
308
+ "splits": {
309
+ "accent": {"": 1},
310
+ "age": {
311
+ "twenties": 0.2,
312
+ "fourties": 0.18,
313
+ "": 0.31,
314
+ "thirties": 0.15,
315
+ "teens": 0.03,
316
+ "sixties": 0.03,
317
+ "fifties": 0.1,
318
+ "seventies": 0,
319
+ "eighties": 0,
320
+ "nineties": 0,
321
+ },
322
+ "gender": {"male": 0.59, "": 0.31, "female": 0.09, "other": 0.01},
323
+ },
324
+ "users": 16390,
325
+ "size": 29533045352,
326
+ "checksum": "ed2ff5a0564f5e4c0da9606d9fb10ef9189d3c369a9046cdde95d2f1ba5b4e0e",
327
+ "avgDurationSecs": 5.125,
328
+ "validDurationSecs": 3825985.881,
329
+ "totalHrs": 1133.44,
330
+ "validHrs": 1062.77,
331
+ },
332
+ "tt": {
333
+ "buckets": {
334
+ "dev": 2812,
335
+ "invalidated": 351,
336
+ "other": 186,
337
+ "reported": 3,
338
+ "test": 5086,
339
+ "train": 10062,
340
+ "validated": 28102,
341
+ },
342
+ "duration": 107079434,
343
+ "reportedSentences": 4,
344
+ "clips": 28639,
345
+ "splits": {
346
+ "accent": {"": 1},
347
+ "age": {
348
+ "": 0.19,
349
+ "thirties": 0.73,
350
+ "twenties": 0.05,
351
+ "sixties": 0,
352
+ "fifties": 0.01,
353
+ "teens": 0,
354
+ "fourties": 0,
355
+ "seventies": 0.01,
356
+ },
357
+ "gender": {"": 0.19, "male": 0.79, "female": 0.02},
358
+ },
359
+ "users": 206,
360
+ "size": 795268101,
361
+ "checksum": "31f43dac431fcef8e07ca6f96320d9425ca4bfbf862c6a1fd38dea10b6cc5db2",
362
+ "avgDurationSecs": 3.739,
363
+ "validDurationSecs": 105071.625,
364
+ "totalHrs": 29.74,
365
+ "validHrs": 29.18,
366
+ },
367
+ "ta": {
368
+ "buckets": {
369
+ "dev": 11473,
370
+ "invalidated": 5460,
371
+ "other": 66259,
372
+ "reported": 3190,
373
+ "test": 11499,
374
+ "train": 38077,
375
+ "validated": 126014,
376
+ },
377
+ "duration": 1229526168,
378
+ "reportedSentences": 3190,
379
+ "clips": 197733,
380
+ "splits": {
381
+ "accent": {"": 1},
382
+ "age": {
383
+ "twenties": 0.08,
384
+ "thirties": 0.1,
385
+ "": 0.7,
386
+ "fourties": 0.03,
387
+ "seventies": 0.02,
388
+ "fifties": 0.02,
389
+ "teens": 0.04,
390
+ "sixties": 0,
391
+ "eighties": 0,
392
+ },
393
+ "gender": {"male": 0.16, "": 0.7, "other": 0, "female": 0.14},
394
+ },
395
+ "users": 679,
396
+ "size": 7385758869,
397
+ "checksum": "afc50e741d646f789f4781af0447e7ac7e352a3816ba6957052e55666285a486",
398
+ "avgDurationSecs": 6.218,
399
+ "validDurationSecs": 783569.311,
400
+ "totalHrs": 341.53,
401
+ "validHrs": 217.65,
402
+ },
403
+ "ru": {
404
+ "buckets": {
405
+ "dev": 9415,
406
+ "invalidated": 6385,
407
+ "other": 15202,
408
+ "reported": 282,
409
+ "test": 9419,
410
+ "train": 21712,
411
+ "validated": 111904,
412
+ },
413
+ "duration": 698374512,
414
+ "reportedSentences": 276,
415
+ "clips": 133491,
416
+ "splits": {
417
+ "accent": {"": 1},
418
+ "age": {
419
+ "twenties": 0.42,
420
+ "teens": 0.08,
421
+ "": 0.19,
422
+ "fourties": 0.15,
423
+ "thirties": 0.13,
424
+ "fifties": 0.03,
425
+ "sixties": 0,
426
+ "seventies": 0,
427
+ },
428
+ "gender": {"male": 0.64, "": 0.2, "other": 0, "female": 0.16},
429
+ },
430
+ "users": 2452,
431
+ "size": 4974445991,
432
+ "checksum": "5dc41389cd248c8e80568751048da64145f876778959f6ef34ca15858eeeb304",
433
+ "avgDurationSecs": 5.232,
434
+ "validDurationSecs": 585439.478,
435
+ "totalHrs": 193.99,
436
+ "validHrs": 162.62,
437
+ },
438
+ "nl": {
439
+ "buckets": {
440
+ "dev": 10477,
441
+ "invalidated": 4910,
442
+ "other": 1443,
443
+ "reported": 302,
444
+ "test": 10477,
445
+ "train": 28286,
446
+ "validated": 82265,
447
+ },
448
+ "duration": 380247373,
449
+ "reportedSentences": 303,
450
+ "clips": 88618,
451
+ "splits": {
452
+ "accent": {"": 1},
453
+ "age": {
454
+ "": 0.41,
455
+ "twenties": 0.22,
456
+ "fourties": 0.15,
457
+ "thirties": 0.1,
458
+ "teens": 0.02,
459
+ "fifties": 0.08,
460
+ "sixties": 0.01,
461
+ "nineties": 0,
462
+ "eighties": 0,
463
+ "seventies": 0,
464
+ },
465
+ "gender": {"": 0.42, "male": 0.47, "female": 0.11, "other": 0},
466
+ },
467
+ "users": 1462,
468
+ "size": 2632034245,
469
+ "checksum": "a173515c0f7c99559ef5a446c26d0c16e91d72201ffd64bd68703b7776fee2c1",
470
+ "avgDurationSecs": 4.291,
471
+ "validDurationSecs": 352987.544,
472
+ "totalHrs": 105.62,
473
+ "validHrs": 98.05,
474
+ },
475
+ "it": {
476
+ "buckets": {
477
+ "dev": 14905,
478
+ "invalidated": 16853,
479
+ "other": 27,
480
+ "reported": 5147,
481
+ "test": 14905,
482
+ "train": 142934,
483
+ "validated": 209027,
484
+ },
485
+ "duration": 1208481924,
486
+ "reportedSentences": 5143,
487
+ "clips": 225907,
488
+ "splits": {
489
+ "accent": {"": 1},
490
+ "age": {
491
+ "thirties": 0.16,
492
+ "twenties": 0.2,
493
+ "": 0.3,
494
+ "fifties": 0.16,
495
+ "fourties": 0.14,
496
+ "seventies": 0,
497
+ "sixties": 0.02,
498
+ "teens": 0.01,
499
+ "eighties": 0,
500
+ "nineties": 0,
501
+ },
502
+ "gender": {"female": 0.12, "male": 0.58, "": 0.29, "other": 0},
503
+ },
504
+ "users": 6576,
505
+ "size": 8431167904,
506
+ "checksum": "55d734e2269fb843b3d63e27fcd8ca51349551db1dedf1f9e3d6bc3f1ae0e1ef",
507
+ "avgDurationSecs": 5.349,
508
+ "validDurationSecs": 1118182.93,
509
+ "totalHrs": 335.68,
510
+ "validHrs": 310.6,
511
+ },
512
+ "eu": {
513
+ "buckets": {
514
+ "dev": 6463,
515
+ "invalidated": 5726,
516
+ "other": 26030,
517
+ "reported": 42,
518
+ "test": 6463,
519
+ "train": 10567,
520
+ "validated": 68653,
521
+ },
522
+ "duration": 520773963,
523
+ "reportedSentences": 43,
524
+ "clips": 100409,
525
+ "splits": {
526
+ "accent": {"": 1},
527
+ "age": {
528
+ "fourties": 0.13,
529
+ "thirties": 0.07,
530
+ "fifties": 0.13,
531
+ "twenties": 0.36,
532
+ "": 0.24,
533
+ "teens": 0.03,
534
+ "sixties": 0.02,
535
+ "seventies": 0,
536
+ },
537
+ "gender": {"male": 0.47, "female": 0.26, "": 0.25, "other": 0.02},
538
+ },
539
+ "users": 1192,
540
+ "size": 3939191632,
541
+ "checksum": "c63d79e13a292e9cff9a4dbb84b1abaa7f8f9ed48f5eb5173df2811247366db2",
542
+ "avgDurationSecs": 5.187,
543
+ "validDurationSecs": 356070.62,
544
+ "totalHrs": 144.65,
545
+ "validHrs": 98.9,
546
+ },
547
+ "tr": {
548
+ "buckets": {
549
+ "dev": 8110,
550
+ "invalidated": 3182,
551
+ "other": 151,
552
+ "reported": 287,
553
+ "test": 8339,
554
+ "train": 16948,
555
+ "validated": 63236,
556
+ },
557
+ "duration": 246710007,
558
+ "reportedSentences": 288,
559
+ "clips": 66569,
560
+ "splits": {
561
+ "accent": {"": 1},
562
+ "age": {
563
+ "": 0.33,
564
+ "thirties": 0.11,
565
+ "twenties": 0.28,
566
+ "teens": 0.02,
567
+ "fourties": 0.04,
568
+ "fifties": 0.1,
569
+ "sixties": 0.08,
570
+ "eighties": 0,
571
+ "seventies": 0.04,
572
+ },
573
+ "gender": {"": 0.33, "male": 0.46, "female": 0.21, "other": 0},
574
+ },
575
+ "users": 1228,
576
+ "size": 1550870485,
577
+ "checksum": "7a82a2cf91f91fafd67f16a15676e09f2ba92a6b8a99a495bb3438386f87e794",
578
+ "avgDurationSecs": 3.706,
579
+ "validDurationSecs": 234357.644,
580
+ "totalHrs": 68.53,
581
+ "validHrs": 65.09,
582
+ },
583
+ "ar": {
584
+ "buckets": {
585
+ "dev": 10386,
586
+ "invalidated": 14733,
587
+ "other": 30308,
588
+ "reported": 2029,
589
+ "test": 10388,
590
+ "train": 27823,
591
+ "validated": 75110,
592
+ },
593
+ "duration": 500993000,
594
+ "reportedSentences": 2022,
595
+ "clips": 120151,
596
+ "splits": {
597
+ "accent": {"": 1},
598
+ "age": {
599
+ "thirties": 0.12,
600
+ "": 0.58,
601
+ "twenties": 0.26,
602
+ "fourties": 0.01,
603
+ "teens": 0.03,
604
+ "fifties": 0,
605
+ "sixties": 0,
606
+ "nineties": 0,
607
+ },
608
+ "gender": {"female": 0.17, "": 0.57, "male": 0.25, "other": 0},
609
+ },
610
+ "users": 1216,
611
+ "size": 2987783290,
612
+ "checksum": "b208528232109044d218035e65a91803c79319bfbcb50b616b7a1a9a7421fede",
613
+ "avgDurationSecs": 4.17,
614
+ "validDurationSecs": 306616.003,
615
+ "totalHrs": 139.17,
616
+ "validHrs": 85.17,
617
+ },
618
+ "zh-TW": {
619
+ "buckets": {
620
+ "dev": 4200,
621
+ "invalidated": 4269,
622
+ "other": 25517,
623
+ "reported": 85,
624
+ "test": 4200,
625
+ "train": 5619,
626
+ "validated": 69509,
627
+ },
628
+ "duration": 321779398,
629
+ "reportedSentences": 86,
630
+ "clips": 99295,
631
+ "splits": {
632
+ "accent": {"": 1},
633
+ "age": {
634
+ "thirties": 0.22,
635
+ "twenties": 0.36,
636
+ "teens": 0.05,
637
+ "": 0.24,
638
+ "fifties": 0.01,
639
+ "seventies": 0,
640
+ "fourties": 0.11,
641
+ "sixties": 0,
642
+ },
643
+ "gender": {"male": 0.49, "": 0.23, "female": 0.25, "other": 0.02},
644
+ },
645
+ "users": 1695,
646
+ "size": 2410877453,
647
+ "checksum": "b0fe7534d4a45cc75d4ddccbdec1120d3016a36532ee29629fa50280dc66db77",
648
+ "avgDurationSecs": 3.241,
649
+ "validDurationSecs": 225253.68,
650
+ "totalHrs": 89.38,
651
+ "validHrs": 62.57,
652
+ },
653
+ "br": {
654
+ "buckets": {
655
+ "dev": 2157,
656
+ "invalidated": 756,
657
+ "other": 11281,
658
+ "reported": 182,
659
+ "test": 2147,
660
+ "train": 2568,
661
+ "validated": 11127,
662
+ },
663
+ "duration": 71230579,
664
+ "reportedSentences": 183,
665
+ "clips": 23164,
666
+ "splits": {
667
+ "accent": {"": 1},
668
+ "age": {
669
+ "twenties": 0.25,
670
+ "": 0.33,
671
+ "fifties": 0.06,
672
+ "fourties": 0.07,
673
+ "thirties": 0.08,
674
+ "sixties": 0.18,
675
+ "seventies": 0.02,
676
+ "teens": 0.01,
677
+ },
678
+ "gender": {"male": 0.65, "": 0.34, "female": 0.02},
679
+ },
680
+ "users": 171,
681
+ "size": 525334515,
682
+ "checksum": "5a7fbf4904a5ecca643637672154e270562b97d806b731dfe652ef366d3bcdba",
683
+ "avgDurationSecs": 3.075,
684
+ "validDurationSecs": 34216.139,
685
+ "totalHrs": 19.78,
686
+ "validHrs": 9.5,
687
+ },
688
+ "pt": {
689
+ "buckets": {
690
+ "dev": 8302,
691
+ "invalidated": 4152,
692
+ "other": 11486,
693
+ "reported": 2225,
694
+ "test": 8301,
695
+ "train": 16575,
696
+ "validated": 95429,
697
+ },
698
+ "duration": 469418983,
699
+ "reportedSentences": 2220,
700
+ "clips": 111067,
701
+ "splits": {
702
+ "accent": {"": 1},
703
+ "age": {
704
+ "": 0.2,
705
+ "twenties": 0.41,
706
+ "teens": 0.03,
707
+ "thirties": 0.23,
708
+ "fourties": 0.1,
709
+ "sixties": 0,
710
+ "fifties": 0.03,
711
+ "seventies": 0,
712
+ },
713
+ "gender": {"": 0.2, "male": 0.74, "female": 0.04, "other": 0.02},
714
+ },
715
+ "users": 2365,
716
+ "size": 3098993125,
717
+ "checksum": "0cb4b6d603d4277bd279609404f127040ed2446f6f7d5d6cab890f036f351fd1",
718
+ "avgDurationSecs": 4.226,
719
+ "validDurationSecs": 403325.777,
720
+ "totalHrs": 130.39,
721
+ "validHrs": 112.03,
722
+ },
723
+ "eo": {
724
+ "buckets": {
725
+ "dev": 14902,
726
+ "invalidated": 127227,
727
+ "other": 126649,
728
+ "reported": 2091,
729
+ "test": 14915,
730
+ "train": 143982,
731
+ "validated": 847678,
732
+ },
733
+ "duration": 6683979355,
734
+ "reportedSentences": 2090,
735
+ "clips": 1101554,
736
+ "splits": {
737
+ "accent": {"": 1},
738
+ "age": {
739
+ "twenties": 0.57,
740
+ "thirties": 0.12,
741
+ "": 0.19,
742
+ "fourties": 0.04,
743
+ "fifties": 0.02,
744
+ "seventies": 0,
745
+ "teens": 0.05,
746
+ "sixties": 0,
747
+ "eighties": 0,
748
+ },
749
+ "gender": {"male": 0.69, "": 0.2, "female": 0.11, "other": 0},
750
+ },
751
+ "users": 1415,
752
+ "size": 39920892777,
753
+ "checksum": "0a69c50e958736afe155c8f9044016c9c90e024524369741dd2bc30dfd036a4b",
754
+ "avgDurationSecs": 6.068,
755
+ "validDurationSecs": 5068560,
756
+ "totalHrs": 1856.66111111,
757
+ "validHrs": 1407.93,
758
+ },
759
+ "zh-CN": {
760
+ "buckets": {
761
+ "dev": 9688,
762
+ "invalidated": 6424,
763
+ "other": 12312,
764
+ "reported": 415,
765
+ "test": 9698,
766
+ "train": 23261,
767
+ "validated": 46743,
768
+ },
769
+ "duration": 343002480,
770
+ "reportedSentences": 414,
771
+ "clips": 65479,
772
+ "splits": {
773
+ "accent": {"": 1},
774
+ "age": {
775
+ "": 0.38,
776
+ "teens": 0.09,
777
+ "twenties": 0.39,
778
+ "thirties": 0.11,
779
+ "fourties": 0.03,
780
+ "nineties": 0,
781
+ "fifties": 0,
782
+ "sixties": 0,
783
+ },
784
+ "gender": {"": 0.38, "male": 0.52, "female": 0.09, "other": 0.01},
785
+ },
786
+ "users": 4013,
787
+ "size": 2545234598,
788
+ "checksum": "3e47195ee95e41bf256c42c457d1726fd1d8b5f5a0c36bf0efe4d78568ac52eb",
789
+ "avgDurationSecs": 5.238,
790
+ "validDurationSecs": 244856.594,
791
+ "totalHrs": 95.27,
792
+ "validHrs": 68.01,
793
+ },
794
+ "id": {
795
+ "buckets": {
796
+ "dev": 3207,
797
+ "invalidated": 2442,
798
+ "other": 22385,
799
+ "reported": 250,
800
+ "test": 3608,
801
+ "train": 5032,
802
+ "validated": 22874,
803
+ },
804
+ "duration": 193962072,
805
+ "reportedSentences": 251,
806
+ "clips": 47701,
807
+ "splits": {
808
+ "accent": {"": 1},
809
+ "age": {
810
+ "": 0.26,
811
+ "twenties": 0.39,
812
+ "thirties": 0.06,
813
+ "teens": 0.27,
814
+ "fifties": 0,
815
+ "fourties": 0.02,
816
+ },
817
+ "gender": {"": 0.26, "male": 0.41, "female": 0.29, "other": 0.04},
818
+ },
819
+ "users": 394,
820
+ "size": 1237534480,
821
+ "checksum": "58c934a8798c3d29c84bc99e8f425c43ddaefb3f945766094134c4769a790fce",
822
+ "avgDurationSecs": 4.066,
823
+ "validDurationSecs": 93010.386,
824
+ "totalHrs": 53.87,
825
+ "validHrs": 25.83,
826
+ },
827
+ "ia": {
828
+ "buckets": {
829
+ "dev": 1786,
830
+ "invalidated": 326,
831
+ "other": 2863,
832
+ "reported": 263,
833
+ "test": 1708,
834
+ "train": 5050,
835
+ "validated": 11145,
836
+ },
837
+ "duration": 59854908,
838
+ "reportedSentences": 259,
839
+ "clips": 14334,
840
+ "splits": {
841
+ "accent": {"": 1},
842
+ "age": {
843
+ "seventies": 0.22,
844
+ "fourties": 0.3,
845
+ "": 0.39,
846
+ "twenties": 0.05,
847
+ "thirties": 0.02,
848
+ "teens": 0,
849
+ "fifties": 0.03,
850
+ "sixties": 0,
851
+ },
852
+ "gender": {"male": 0.61, "": 0.39, "female": 0.01},
853
+ },
854
+ "users": 57,
855
+ "size": 406246505,
856
+ "checksum": "4bae7a76fdac182ad6844c7d037589770e2cc3a4bdd70731a898eab64a890632",
857
+ "avgDurationSecs": 4.176,
858
+ "validDurationSecs": 46538.506,
859
+ "totalHrs": 16.62,
860
+ "validHrs": 12.92,
861
+ },
862
+ "lv": {
863
+ "buckets": {
864
+ "dev": 1829,
865
+ "invalidated": 165,
866
+ "other": 1218,
867
+ "reported": 23,
868
+ "test": 2148,
869
+ "train": 3134,
870
+ "validated": 7542,
871
+ },
872
+ "duration": 30428333,
873
+ "reportedSentences": 24,
874
+ "clips": 8925,
875
+ "splits": {
876
+ "accent": {"": 1},
877
+ "age": {
878
+ "thirties": 0.49,
879
+ "fourties": 0.03,
880
+ "": 0.17,
881
+ "twenties": 0.28,
882
+ "teens": 0.03,
883
+ "fifties": 0,
884
+ },
885
+ "gender": {"male": 0.7, "female": 0.13, "": 0.17},
886
+ },
887
+ "users": 115,
888
+ "size": 224375158,
889
+ "checksum": "037fbf62bd6a4e8703ce6fa6bd7b414825e388e7532c3b59d621ff983cb7f246",
890
+ "avgDurationSecs": 3.409,
891
+ "validDurationSecs": 25713.22,
892
+ "totalHrs": 8.45,
893
+ "validHrs": 7.14,
894
+ },
895
+ "ja": {
896
+ "buckets": {
897
+ "dev": 4124,
898
+ "invalidated": 1988,
899
+ "other": 115,
900
+ "reported": 121,
901
+ "test": 4483,
902
+ "train": 6499,
903
+ "validated": 30814,
904
+ },
905
+ "duration": 156864273,
906
+ "reportedSentences": 121,
907
+ "clips": 32917,
908
+ "splits": {
909
+ "accent": {"": 1},
910
+ "age": {
911
+ "twenties": 0.34,
912
+ "": 0.23,
913
+ "teens": 0.04,
914
+ "fifties": 0.01,
915
+ "thirties": 0.1,
916
+ "fourties": 0.28,
917
+ "sixties": 0,
918
+ },
919
+ "gender": {"male": 0.5, "": 0.21, "female": 0.29, "other": 0},
920
+ },
921
+ "users": 550,
922
+ "size": 958012363,
923
+ "checksum": "6185cda4aee9c4a7e3c18739ed48c2ac84e235f5bc2a7f7bdd458a981d3f1f86",
924
+ "avgDurationSecs": 4.765,
925
+ "validDurationSecs": 146842.535,
926
+ "totalHrs": 43.57,
927
+ "validHrs": 40.78,
928
+ },
929
+ "rw": {
930
+ "buckets": {
931
+ "dev": 15988,
932
+ "invalidated": 227700,
933
+ "other": 47331,
934
+ "reported": 623,
935
+ "test": 16213,
936
+ "train": 1003810,
937
+ "validated": 1438253,
938
+ },
939
+ "duration": 8579999777,
940
+ "reportedSentences": 624,
941
+ "clips": 1713284,
942
+ "splits": {
943
+ "accent": {"": 1},
944
+ "age": {
945
+ "": 0.05,
946
+ "twenties": 0.61,
947
+ "thirties": 0.12,
948
+ "teens": 0.2,
949
+ "fourties": 0.02,
950
+ "fifties": 0,
951
+ },
952
+ "gender": {"": 0.1, "male": 0.57, "female": 0.33, "other": 0},
953
+ },
954
+ "users": 1055,
955
+ "size": 60993257948,
956
+ "checksum": "b454b08caadfa678564b80fbd0a20bdea09508bac4da79a7204e4325838aa933",
957
+ "avgDurationSecs": 5.008,
958
+ "validDurationSecs": 7202664.835,
959
+ "totalHrs": 2383.33,
960
+ "validHrs": 2000.74,
961
+ },
962
+ "sv-SE": {
963
+ "buckets": {
964
+ "dev": 4764,
965
+ "invalidated": 1288,
966
+ "other": 5849,
967
+ "reported": 566,
968
+ "test": 4843,
969
+ "train": 6926,
970
+ "validated": 37302,
971
+ },
972
+ "duration": 174893451,
973
+ "reportedSentences": 567,
974
+ "clips": 44439,
975
+ "splits": {
976
+ "accent": {"": 1},
977
+ "age": {
978
+ "thirties": 0.25,
979
+ "": 0.18,
980
+ "teens": 0.03,
981
+ "fifties": 0.03,
982
+ "twenties": 0.11,
983
+ "fourties": 0.39,
984
+ "sixties": 0,
985
+ "seventies": 0,
986
+ },
987
+ "gender": {"male": 0.47, "": 0.18, "female": 0.34, "other": 0},
988
+ },
989
+ "users": 718,
990
+ "size": 1113702755,
991
+ "checksum": "8cf722f710eea600fefea628d88ab534cb375103fac38474d70c8fbd5f4f4eb1",
992
+ "avgDurationSecs": 3.936,
993
+ "validDurationSecs": 146805.183,
994
+ "totalHrs": 48.58,
995
+ "validHrs": 40.77,
996
+ },
997
+ "cnh": {
998
+ "duration": 20673132,
999
+ "buckets": {
1000
+ "dev": 761,
1001
+ "invalidated": 435,
1002
+ "other": 2913,
1003
+ "reported": 8,
1004
+ "test": 761,
1005
+ "train": 814,
1006
+ "validated": 2453,
1007
+ },
1008
+ "reportedSentences": 9,
1009
+ "clips": 5801,
1010
+ "splits": {
1011
+ "accent": {"": 1},
1012
+ "age": {
1013
+ "": 0.51,
1014
+ "twenties": 0.36,
1015
+ "fourties": 0.01,
1016
+ "teens": 0.02,
1017
+ "thirties": 0.08,
1018
+ "fifties": 0.02,
1019
+ },
1020
+ "gender": {"": 0.51, "male": 0.33, "female": 0.16},
1021
+ },
1022
+ "users": 298,
1023
+ "size": 161377131,
1024
+ "checksum": "a5bc2a2505a3cebf92c76d15d3bd822a583cfaaa1f9fa46275b3e7b41ac34ec6",
1025
+ "avgDurationSecs": 3.564,
1026
+ "validDurationSecs": 8741.802,
1027
+ "totalHrs": 5.74,
1028
+ "validHrs": 2.42,
1029
+ },
1030
+ "et": {
1031
+ "duration": 158860334,
1032
+ "buckets": {
1033
+ "dev": 2613,
1034
+ "invalidated": 5461,
1035
+ "other": 805,
1036
+ "reported": 450,
1037
+ "test": 2613,
1038
+ "train": 3103,
1039
+ "validated": 17303,
1040
+ },
1041
+ "reportedSentences": 448,
1042
+ "clips": 23569,
1043
+ "splits": {
1044
+ "accent": {"": 1},
1045
+ "age": {
1046
+ "": 0.2,
1047
+ "thirties": 0.07,
1048
+ "twenties": 0.68,
1049
+ "fourties": 0.05,
1050
+ "fifties": 0,
1051
+ "seventies": 0,
1052
+ "teens": 0,
1053
+ },
1054
+ "gender": {"": 0.2, "male": 0.56, "female": 0.24, "other": 0},
1055
+ },
1056
+ "users": 723,
1057
+ "size": 1118010789,
1058
+ "checksum": "b277d1c98c6f46abdb0867e582aa5ea37cd788b868f4537144dbdc5499b52d65",
1059
+ "avgDurationSecs": 6.74,
1060
+ "validDurationSecs": 116626.092,
1061
+ "totalHrs": 44.12,
1062
+ "validHrs": 32.39,
1063
+ },
1064
+ "ky": {
1065
+ "duration": 159748788,
1066
+ "buckets": {
1067
+ "dev": 1613,
1068
+ "invalidated": 5557,
1069
+ "other": 109,
1070
+ "reported": 32,
1071
+ "test": 1613,
1072
+ "train": 1787,
1073
+ "validated": 29492,
1074
+ },
1075
+ "reportedSentences": 33,
1076
+ "clips": 35158,
1077
+ "splits": {
1078
+ "accent": {"": 1},
1079
+ "age": {
1080
+ "thirties": 0.08,
1081
+ "": 0.06,
1082
+ "fourties": 0.01,
1083
+ "twenties": 0.67,
1084
+ "teens": 0.19,
1085
+ },
1086
+ "gender": {"male": 0.54, "": 0.11, "female": 0.36, "other": 0},
1087
+ },
1088
+ "users": 234,
1089
+ "size": 1034900324,
1090
+ "checksum": "05ddbd6beddc51c341b4d414723d4408a8c1e9c21167744d02110ce0df273235",
1091
+ "avgDurationSecs": 4.544,
1092
+ "validDurationSecs": 134003.961,
1093
+ "totalHrs": 44.37,
1094
+ "validHrs": 37.22,
1095
+ },
1096
+ "ro": {
1097
+ "duration": 133037923,
1098
+ "buckets": {
1099
+ "dev": 3683,
1100
+ "invalidated": 850,
1101
+ "other": 18388,
1102
+ "reported": 283,
1103
+ "test": 3843,
1104
+ "train": 5158,
1105
+ "validated": 14381,
1106
+ },
1107
+ "reportedSentences": 284,
1108
+ "clips": 33619,
1109
+ "splits": {
1110
+ "accent": {"": 1},
1111
+ "age": {
1112
+ "thirties": 0.14,
1113
+ "teens": 0.02,
1114
+ "": 0.11,
1115
+ "fourties": 0.05,
1116
+ "sixties": 0,
1117
+ "twenties": 0.66,
1118
+ "fifties": 0.01,
1119
+ "eighties": 0,
1120
+ },
1121
+ "gender": {"male": 0.73, "": 0.1, "female": 0.16, "other": 0.01},
1122
+ },
1123
+ "users": 332,
1124
+ "size": 837935454,
1125
+ "checksum": "7c7f81d93b7c591a61040aea88ff0b216f21e4d77f5a99ca2817a307793fdbe3",
1126
+ "avgDurationSecs": 3.957,
1127
+ "validDurationSecs": 56908.842,
1128
+ "totalHrs": 36.95,
1129
+ "validHrs": 15.8,
1130
+ },
1131
+ "hsb": {
1132
+ "duration": 10103328,
1133
+ "buckets": {
1134
+ "dev": 172,
1135
+ "invalidated": 228,
1136
+ "other": 30,
1137
+ "reported": 56,
1138
+ "test": 418,
1139
+ "train": 808,
1140
+ "validated": 1398,
1141
+ },
1142
+ "reportedSentences": 57,
1143
+ "clips": 1656,
1144
+ "splits": {
1145
+ "accent": {"": 1},
1146
+ "age": {
1147
+ "fourties": 0.55,
1148
+ "": 0.17,
1149
+ "thirties": 0.11,
1150
+ "sixties": 0,
1151
+ "seventies": 0.03,
1152
+ "twenties": 0.11,
1153
+ "fifties": 0.03,
1154
+ },
1155
+ "gender": {"male": 0.83, "": 0.17, "other": 0},
1156
+ },
1157
+ "users": 19,
1158
+ "size": 79355786,
1159
+ "checksum": "2920dfc81bd6083572b7a91a9cf5a98aa2d9a5f0346e559084f27546cc32512d",
1160
+ "avgDurationSecs": 6.101,
1161
+ "validDurationSecs": 8529.259,
1162
+ "totalHrs": 2.8,
1163
+ "validHrs": 2.36,
1164
+ },
1165
+ "el": {
1166
+ "duration": 93490738,
1167
+ "buckets": {
1168
+ "dev": 1690,
1169
+ "invalidated": 734,
1170
+ "other": 8084,
1171
+ "reported": 63,
1172
+ "test": 1681,
1173
+ "train": 1936,
1174
+ "validated": 13850,
1175
+ },
1176
+ "reportedSentences": 64,
1177
+ "clips": 22668,
1178
+ "splits": {
1179
+ "accent": {"": 1},
1180
+ "age": {
1181
+ "thirties": 0.41,
1182
+ "fourties": 0.14,
1183
+ "": 0.27,
1184
+ "twenties": 0.13,
1185
+ "fifties": 0.03,
1186
+ "teens": 0.01,
1187
+ "sixties": 0,
1188
+ },
1189
+ "gender": {"male": 0.68, "": 0.27, "other": 0.02, "female": 0.03},
1190
+ },
1191
+ "users": 312,
1192
+ "size": 638647250,
1193
+ "checksum": "bcaaf3fa149e4ac9f670a8271c77be8a4d14fc9607bda6e9cf6ae35593af908e",
1194
+ "avgDurationSecs": 4.124,
1195
+ "validDurationSecs": 57122.231,
1196
+ "totalHrs": 25.96,
1197
+ "validHrs": 15.86,
1198
+ },
1199
+ "cs": {
1200
+ "duration": 244312851,
1201
+ "buckets": {
1202
+ "dev": 6950,
1203
+ "invalidated": 1173,
1204
+ "other": 9639,
1205
+ "reported": 693,
1206
+ "test": 7267,
1207
+ "train": 13250,
1208
+ "validated": 45752,
1209
+ },
1210
+ "reportedSentences": 690,
1211
+ "clips": 56564,
1212
+ "splits": {
1213
+ "accent": {"": 1},
1214
+ "age": {
1215
+ "fourties": 0.2,
1216
+ "": 0.36,
1217
+ "thirties": 0.13,
1218
+ "teens": 0.01,
1219
+ "twenties": 0.28,
1220
+ "fifties": 0.02,
1221
+ "sixties": 0,
1222
+ "seventies": 0,
1223
+ },
1224
+ "gender": {"male": 0.62, "": 0.35, "female": 0.03},
1225
+ },
1226
+ "users": 525,
1227
+ "size": 1734765011,
1228
+ "checksum": "7512363c0b7fa44931b5e9402a4e8f27041fab88b353e7a3344e3654f4cb3883",
1229
+ "avgDurationSecs": 4.319,
1230
+ "validDurationSecs": 197613.351,
1231
+ "totalHrs": 67.86,
1232
+ "validHrs": 54.89,
1233
+ },
1234
+ "pl": {
1235
+ "duration": 584124014,
1236
+ "buckets": {
1237
+ "dev": 7748,
1238
+ "invalidated": 5762,
1239
+ "other": 10418,
1240
+ "reported": 523,
1241
+ "test": 7749,
1242
+ "train": 14504,
1243
+ "validated": 114864,
1244
+ },
1245
+ "reportedSentences": 523,
1246
+ "clips": 131044,
1247
+ "splits": {
1248
+ "accent": {"": 1},
1249
+ "age": {
1250
+ "twenties": 0.28,
1251
+ "": 0.24,
1252
+ "teens": 0.02,
1253
+ "thirties": 0.33,
1254
+ "fourties": 0.12,
1255
+ "fifties": 0.01,
1256
+ "nineties": 0.01,
1257
+ "sixties": 0,
1258
+ },
1259
+ "gender": {"male": 0.6, "": 0.25, "female": 0.14, "other": 0.01},
1260
+ },
1261
+ "users": 3026,
1262
+ "size": 4217805363,
1263
+ "checksum": "4c67cc1917503fde008510eec0117ccd79f90540c8cd0d4cfba25f9c6a06d94e",
1264
+ "avgDurationSecs": 4.457,
1265
+ "validDurationSecs": 512002.234,
1266
+ "totalHrs": 162.25,
1267
+ "validHrs": 142.22,
1268
+ },
1269
+ "rm-sursilv": {
1270
+ "duration": 37259753,
1271
+ "buckets": {
1272
+ "dev": 1296,
1273
+ "invalidated": 659,
1274
+ "other": 2102,
1275
+ "reported": 9,
1276
+ "test": 1255,
1277
+ "train": 1454,
1278
+ "validated": 4005,
1279
+ },
1280
+ "reportedSentences": 10,
1281
+ "clips": 6766,
1282
+ "splits": {
1283
+ "accent": {"": 1},
1284
+ "age": {
1285
+ "thirties": 0.03,
1286
+ "twenties": 0.1,
1287
+ "": 0.64,
1288
+ "teens": 0.06,
1289
+ "fourties": 0.17,
1290
+ },
1291
+ "gender": {"male": 0.16, "female": 0.2, "": 0.64, "other": 0},
1292
+ },
1293
+ "users": 84,
1294
+ "size": 284030804,
1295
+ "checksum": "b58ba0a7b617abb3a2f30d8b6c62d481c03f7b1cadcc9e5562f18336bf301421",
1296
+ "avgDurationSecs": 5.507,
1297
+ "validDurationSecs": 22055.175,
1298
+ "totalHrs": 10.34,
1299
+ "validHrs": 6.12,
1300
+ },
1301
+ "rm-vallader": {
1302
+ "duration": 14917514,
1303
+ "buckets": {
1304
+ "dev": 372,
1305
+ "invalidated": 391,
1306
+ "other": 726,
1307
+ "reported": 30,
1308
+ "test": 427,
1309
+ "train": 653,
1310
+ "validated": 1459,
1311
+ },
1312
+ "reportedSentences": 29,
1313
+ "clips": 2576,
1314
+ "splits": {
1315
+ "accent": {"": 1},
1316
+ "age": {
1317
+ "": 0.36,
1318
+ "fourties": 0.41,
1319
+ "twenties": 0.14,
1320
+ "thirties": 0.06,
1321
+ "fifties": 0,
1322
+ "sixties": 0.03,
1323
+ },
1324
+ "gender": {"": 0.36, "male": 0.44, "female": 0.2, "other": 0.01},
1325
+ },
1326
+ "users": 50,
1327
+ "size": 114303398,
1328
+ "checksum": "c1fb6a7fe372b0eb1b32dfac2da331f4df967ae860c6bdf2f8771a52d817bc70",
1329
+ "avgDurationSecs": 5.791,
1330
+ "validDurationSecs": 8449.011,
1331
+ "totalHrs": 4.14,
1332
+ "validHrs": 2.34,
1333
+ },
1334
+ "mn": {
1335
+ "duration": 66850604,
1336
+ "buckets": {
1337
+ "dev": 1829,
1338
+ "invalidated": 739,
1339
+ "other": 3306,
1340
+ "reported": 17,
1341
+ "test": 1882,
1342
+ "train": 2178,
1343
+ "validated": 8180,
1344
+ },
1345
+ "reportedSentences": 18,
1346
+ "clips": 12225,
1347
+ "splits": {
1348
+ "accent": {"": 1},
1349
+ "age": {
1350
+ "thirties": 0.23,
1351
+ "": 0.27,
1352
+ "twenties": 0.41,
1353
+ "fourties": 0.01,
1354
+ "teens": 0.02,
1355
+ "nineties": 0.06,
1356
+ "fifties": 0,
1357
+ },
1358
+ "gender": {"male": 0.36, "": 0.27, "female": 0.32, "other": 0.06},
1359
+ },
1360
+ "users": 451,
1361
+ "size": 511311464,
1362
+ "checksum": "4918ec6e8de6f0c167130e1a11edf0811c0a033fa22d6552e69f09a3bd9f3731",
1363
+ "avgDurationSecs": 5.468,
1364
+ "validDurationSecs": 44731.12,
1365
+ "totalHrs": 18.56,
1366
+ "validHrs": 12.42,
1367
+ },
1368
+ "zh-HK": {
1369
+ "duration": 433845852,
1370
+ "buckets": {
1371
+ "dev": 5563,
1372
+ "invalidated": 3763,
1373
+ "other": 13963,
1374
+ "reported": 612,
1375
+ "test": 5563,
1376
+ "train": 8360,
1377
+ "validated": 84696,
1378
+ },
1379
+ "reportedSentences": 601,
1380
+ "clips": 102422,
1381
+ "splits": {
1382
+ "accent": {"": 1},
1383
+ "age": {
1384
+ "fourties": 0.13,
1385
+ "thirties": 0.11,
1386
+ "": 0.41,
1387
+ "teens": 0.02,
1388
+ "fifties": 0.02,
1389
+ "seventies": 0,
1390
+ "sixties": 0,
1391
+ "twenties": 0.31,
1392
+ },
1393
+ "gender": {"male": 0.41, "": 0.37, "female": 0.22, "other": 0.01},
1394
+ },
1395
+ "users": 2738,
1396
+ "size": 3189158718,
1397
+ "checksum": "0cae705ca0b0d86f608bc61b9872e7f7ba61c4015cc1c279d33daf94fdbcdac3",
1398
+ "avgDurationSecs": 4.236,
1399
+ "validDurationSecs": 358760.894,
1400
+ "totalHrs": 120.51,
1401
+ "validHrs": 99.65,
1402
+ },
1403
+ "ab": {
1404
+ "duration": 300948948,
1405
+ "buckets": {
1406
+ "dev": 9187,
1407
+ "invalidated": 5218,
1408
+ "other": 11702,
1409
+ "reported": 219,
1410
+ "test": 9184,
1411
+ "train": 20815,
1412
+ "validated": 41777,
1413
+ },
1414
+ "reportedSentences": 218,
1415
+ "clips": 58697,
1416
+ "splits": {
1417
+ "accent": {"": 1},
1418
+ "age": {
1419
+ "seventies": 0.01,
1420
+ "thirties": 0.13,
1421
+ "": 0.19,
1422
+ "teens": 0.28,
1423
+ "twenties": 0.19,
1424
+ "fifties": 0.06,
1425
+ "sixties": 0.05,
1426
+ "fourties": 0.09,
1427
+ "eighties": 0.01,
1428
+ },
1429
+ "gender": {"male": 0.18, "female": 0.64, "": 0.18},
1430
+ },
1431
+ "users": 392,
1432
+ "size": 1718935472,
1433
+ "checksum": "fbfddfeddfe3b6f95bc7ee0d1cf293ac6e5e8b00ba3266c53ed7493476f771d3",
1434
+ "avgDurationSecs": 5.127,
1435
+ "validDurationSecs": 214197.39,
1436
+ "totalHrs": 83.59,
1437
+ "validHrs": 59.49,
1438
+ },
1439
+ "cv": {
1440
+ "duration": 81658092,
1441
+ "buckets": {
1442
+ "dev": 1205,
1443
+ "invalidated": 1745,
1444
+ "other": 5132,
1445
+ "reported": 142,
1446
+ "test": 1203,
1447
+ "train": 1366,
1448
+ "validated": 9505,
1449
+ },
1450
+ "reportedSentences": 138,
1451
+ "clips": 16382,
1452
+ "splits": {
1453
+ "accent": {"": 1},
1454
+ "age": {
1455
+ "twenties": 0.45,
1456
+ "": 0.23,
1457
+ "fourties": 0.07,
1458
+ "thirties": 0.01,
1459
+ "teens": 0.23,
1460
+ "fifties": 0.01,
1461
+ },
1462
+ "gender": {"male": 0.51, "": 0.2, "female": 0.29},
1463
+ },
1464
+ "users": 101,
1465
+ "size": 573369798,
1466
+ "checksum": "b62162fb5588f579be9629551c28d3ea80d9c09343fe361c9bafdc588c6d2ae8",
1467
+ "avgDurationSecs": 4.985,
1468
+ "validDurationSecs": 47378.84,
1469
+ "totalHrs": 22.68,
1470
+ "validHrs": 13.16,
1471
+ },
1472
+ "uk": {
1473
+ "duration": 276258228,
1474
+ "buckets": {
1475
+ "dev": 5802,
1476
+ "invalidated": 2148,
1477
+ "other": 7714,
1478
+ "reported": 574,
1479
+ "test": 5802,
1480
+ "train": 8915,
1481
+ "validated": 47063,
1482
+ },
1483
+ "reportedSentences": 575,
1484
+ "clips": 56925,
1485
+ "splits": {
1486
+ "accent": {"": 1},
1487
+ "age": {
1488
+ "twenties": 0.28,
1489
+ "teens": 0.06,
1490
+ "": 0.28,
1491
+ "fourties": 0.14,
1492
+ "thirties": 0.24,
1493
+ "fifties": 0,
1494
+ "sixties": 0,
1495
+ },
1496
+ "gender": {"male": 0.54, "female": 0.17, "": 0.29},
1497
+ },
1498
+ "users": 684,
1499
+ "size": 1905832841,
1500
+ "checksum": "0c7aa9dcd83282471753e83131a0e0d94ec8c1052395330f5ce7af972f66fa9e",
1501
+ "avgDurationSecs": 4.853,
1502
+ "validDurationSecs": 228397.734,
1503
+ "totalHrs": 76.73,
1504
+ "validHrs": 63.44,
1505
+ },
1506
+ "mt": {
1507
+ "duration": 60956460,
1508
+ "buckets": {
1509
+ "dev": 1596,
1510
+ "invalidated": 319,
1511
+ "other": 6235,
1512
+ "reported": 6,
1513
+ "test": 1625,
1514
+ "train": 1952,
1515
+ "validated": 6318,
1516
+ },
1517
+ "reportedSentences": 7,
1518
+ "clips": 12872,
1519
+ "splits": {
1520
+ "accent": {"": 1},
1521
+ "age": {
1522
+ "twenties": 0.19,
1523
+ "": 0.26,
1524
+ "fourties": 0.17,
1525
+ "thirties": 0.09,
1526
+ "teens": 0.03,
1527
+ "fifties": 0.26,
1528
+ "sixties": 0.01,
1529
+ },
1530
+ "gender": {"male": 0.25, "": 0.26, "female": 0.48, "other": 0.01},
1531
+ },
1532
+ "users": 203,
1533
+ "size": 453931362,
1534
+ "checksum": "dfc42d48aa7b4b02e75ae7e13f6ef764b97efcc2bfbc30eaaf17707753b0ab9b",
1535
+ "avgDurationSecs": 4.736,
1536
+ "validDurationSecs": 29919.431,
1537
+ "totalHrs": 16.93,
1538
+ "validHrs": 8.31,
1539
+ },
1540
+ "as": {
1541
+ "duration": 5118797,
1542
+ "buckets": {
1543
+ "dev": 116,
1544
+ "invalidated": 47,
1545
+ "other": 0,
1546
+ "reported": 9,
1547
+ "test": 294,
1548
+ "train": 508,
1549
+ "validated": 918,
1550
+ },
1551
+ "reportedSentences": 10,
1552
+ "clips": 965,
1553
+ "splits": {
1554
+ "accent": {"": 1},
1555
+ "age": {"twenties": 0.39, "": 0.56, "thirties": 0.05},
1556
+ "gender": {"male": 0.46, "": 0.54},
1557
+ },
1558
+ "users": 38,
1559
+ "size": 35350705,
1560
+ "checksum": "488309b938dbcb4027d387a39cafa17bf03816ef129ee2b68c3c5ca01cfc6824",
1561
+ "avgDurationSecs": 5.304,
1562
+ "validDurationSecs": 4869.488,
1563
+ "totalHrs": 1.42,
1564
+ "validHrs": 1.35,
1565
+ },
1566
+ "ka": {
1567
+ "duration": 29256840,
1568
+ "buckets": {
1569
+ "dev": 1348,
1570
+ "invalidated": 349,
1571
+ "other": 7,
1572
+ "reported": 34,
1573
+ "test": 1345,
1574
+ "train": 1655,
1575
+ "validated": 5100,
1576
+ },
1577
+ "reportedSentences": 35,
1578
+ "clips": 5456,
1579
+ "splits": {
1580
+ "accent": {"": 1},
1581
+ "age": {
1582
+ "twenties": 0.39,
1583
+ "thirties": 0.24,
1584
+ "": 0.34,
1585
+ "fourties": 0.03,
1586
+ "fifties": 0,
1587
+ "teens": 0.01,
1588
+ },
1589
+ "gender": {"male": 0.46, "female": 0.2, "": 0.34},
1590
+ },
1591
+ "users": 127,
1592
+ "size": 193547750,
1593
+ "checksum": "0424f971399d08f1fd9ed0b2badf1310d7e4b5cb4a8bac3c63905d91b98ac896",
1594
+ "avgDurationSecs": 5.362,
1595
+ "validDurationSecs": 27347.853,
1596
+ "totalHrs": 8.12,
1597
+ "validHrs": 7.59,
1598
+ },
1599
+ "fy-NL": {
1600
+ "duration": 453115107,
1601
+ "buckets": {
1602
+ "dev": 3024,
1603
+ "invalidated": 2900,
1604
+ "other": 52267,
1605
+ "reported": 402,
1606
+ "test": 3024,
1607
+ "train": 3697,
1608
+ "validated": 35880,
1609
+ },
1610
+ "reportedSentences": 400,
1611
+ "clips": 91047,
1612
+ "splits": {
1613
+ "accent": {"": 1},
1614
+ "age": {
1615
+ "": 0.59,
1616
+ "fifties": 0.12,
1617
+ "thirties": 0.04,
1618
+ "twenties": 0.02,
1619
+ "fourties": 0.07,
1620
+ "sixties": 0.14,
1621
+ "seventies": 0.01,
1622
+ "teens": 0,
1623
+ "eighties": 0,
1624
+ },
1625
+ "gender": {"": 0.6, "male": 0.1, "female": 0.3},
1626
+ },
1627
+ "users": 1132,
1628
+ "size": 2839357525,
1629
+ "checksum": "42f0bebb57cb56a715be8423aff6ef97c338b58aaa8efa4b6f766b14937f489a",
1630
+ "avgDurationSecs": 4.977,
1631
+ "validDurationSecs": 178564.588,
1632
+ "totalHrs": 125.86,
1633
+ "validHrs": 49.6,
1634
+ },
1635
+ "dv": {
1636
+ "duration": 210442743,
1637
+ "buckets": {
1638
+ "dev": 2244,
1639
+ "invalidated": 1538,
1640
+ "other": 14430,
1641
+ "reported": 49,
1642
+ "test": 2243,
1643
+ "train": 2624,
1644
+ "validated": 25774,
1645
+ },
1646
+ "reportedSentences": 50,
1647
+ "clips": 41742,
1648
+ "splits": {
1649
+ "accent": {"": 1},
1650
+ "age": {
1651
+ "": 0.22,
1652
+ "twenties": 0.18,
1653
+ "thirties": 0.36,
1654
+ "fourties": 0.23,
1655
+ "teens": 0.01,
1656
+ "nineties": 0,
1657
+ },
1658
+ "gender": {"": 0.22, "male": 0.28, "female": 0.5},
1659
+ },
1660
+ "users": 300,
1661
+ "size": 1353683004,
1662
+ "checksum": "1e7a5b82997ca76d37ee256e8c666f42eb01cbbf5a9dc6e24fa577c2b4ecff16",
1663
+ "avgDurationSecs": 5.042,
1664
+ "validDurationSecs": 129939.899,
1665
+ "totalHrs": 58.45,
1666
+ "validHrs": 36.09,
1667
+ },
1668
+ "pa-IN": {
1669
+ "duration": 12071510,
1670
+ "buckets": {
1671
+ "dev": 266,
1672
+ "invalidated": 71,
1673
+ "other": 1227,
1674
+ "reported": 233,
1675
+ "test": 360,
1676
+ "train": 590,
1677
+ "validated": 1216,
1678
+ },
1679
+ "reportedSentences": 232,
1680
+ "clips": 2514,
1681
+ "splits": {
1682
+ "accent": {"": 1},
1683
+ "age": {
1684
+ "": 0.24,
1685
+ "fourties": 0.04,
1686
+ "fifties": 0.01,
1687
+ "thirties": 0.44,
1688
+ "twenties": 0.27,
1689
+ "sixties": 0,
1690
+ "teens": 0,
1691
+ },
1692
+ "gender": {"": 0.24, "male": 0.76, "female": 0},
1693
+ },
1694
+ "users": 47,
1695
+ "size": 88232608,
1696
+ "checksum": "5728ab2b9391ff9ac7c744646bcb7cd1433796ec69aaac2cc61cb0b08feee7b5",
1697
+ "avgDurationSecs": 4.802,
1698
+ "validDurationSecs": 5838.885,
1699
+ "totalHrs": 3.35,
1700
+ "validHrs": 1.62,
1701
+ },
1702
+ "vi": {
1703
+ "duration": 60732188,
1704
+ "buckets": {
1705
+ "dev": 0,
1706
+ "invalidated": 285,
1707
+ "other": 10954,
1708
+ "reported": 171,
1709
+ "test": 1120,
1710
+ "train": 2722,
1711
+ "validated": 4066,
1712
+ },
1713
+ "reportedSentences": 170,
1714
+ "clips": 15305,
1715
+ "splits": {
1716
+ "accent": {"": 1},
1717
+ "age": {
1718
+ "thirties": 0.02,
1719
+ "twenties": 0.18,
1720
+ "": 0.24,
1721
+ "teens": 0.21,
1722
+ "seventies": 0,
1723
+ "fourties": 0.02,
1724
+ "sixties": 0.33,
1725
+ },
1726
+ "gender": {"male": 0.52, "": 0.24, "female": 0.21, "other": 0.02},
1727
+ },
1728
+ "users": 200,
1729
+ "size": 352797985,
1730
+ "checksum": "38782df109852d3cbc6a7b788bfa3a745648c1886a4e81acd2a600b529a4fbe5",
1731
+ "avgDurationSecs": 3.968,
1732
+ "validDurationSecs": 16134.406,
1733
+ "totalHrs": 16.87,
1734
+ "validHrs": 4.48,
1735
+ },
1736
+ "or": {
1737
+ "duration": 32312652,
1738
+ "buckets": {
1739
+ "dev": 306,
1740
+ "invalidated": 146,
1741
+ "other": 5184,
1742
+ "reported": 4,
1743
+ "test": 213,
1744
+ "train": 447,
1745
+ "validated": 1065,
1746
+ },
1747
+ "reportedSentences": 5,
1748
+ "clips": 6395,
1749
+ "splits": {
1750
+ "accent": {"": 1},
1751
+ "age": {
1752
+ "twenties": 0.16,
1753
+ "": 0.09,
1754
+ "thirties": 0.75,
1755
+ "fourties": 0,
1756
+ "teens": 0,
1757
+ },
1758
+ "gender": {"male": 0.92, "": 0.08, "female": 0},
1759
+ },
1760
+ "users": 79,
1761
+ "size": 237971623,
1762
+ "checksum": "bc2310cfae8ad38401c83dc43d75dec3686c82e98b22dca9cd0ab3034d93d50b",
1763
+ "avgDurationSecs": 5.053,
1764
+ "validDurationSecs": 5381.231,
1765
+ "totalHrs": 8.97,
1766
+ "validHrs": 1.49,
1767
+ },
1768
+ "ga-IE": {
1769
+ "duration": 31746555,
1770
+ "buckets": {
1771
+ "dev": 512,
1772
+ "invalidated": 778,
1773
+ "other": 3811,
1774
+ "reported": 9,
1775
+ "test": 509,
1776
+ "train": 534,
1777
+ "validated": 4412,
1778
+ },
1779
+ "reportedSentences": 10,
1780
+ "clips": 9001,
1781
+ "splits": {
1782
+ "accent": {"": 1},
1783
+ "age": {
1784
+ "twenties": 0.25,
1785
+ "": 0.37,
1786
+ "thirties": 0.26,
1787
+ "fourties": 0.04,
1788
+ "sixties": 0.01,
1789
+ "teens": 0.02,
1790
+ "fifties": 0.05,
1791
+ },
1792
+ "gender": {"male": 0.49, "": 0.37, "female": 0.13, "other": 0},
1793
+ },
1794
+ "users": 153,
1795
+ "size": 221761496,
1796
+ "checksum": "800e4bdc1823758925bb1cd5cc680c64fc97cd1d34aa78fcac40ec37b8caaf3c",
1797
+ "avgDurationSecs": 3.527,
1798
+ "validDurationSecs": 15561.138,
1799
+ "totalHrs": 8.81,
1800
+ "validHrs": 4.32,
1801
+ },
1802
+ "fi": {
1803
+ "duration": 53956767,
1804
+ "buckets": {
1805
+ "dev": 1430,
1806
+ "invalidated": 187,
1807
+ "other": 4976,
1808
+ "reported": 38,
1809
+ "test": 1739,
1810
+ "train": 2334,
1811
+ "validated": 6699,
1812
+ },
1813
+ "reportedSentences": 39,
1814
+ "clips": 11862,
1815
+ "splits": {
1816
+ "accent": {"": 1},
1817
+ "age": {
1818
+ "thirties": 0.13,
1819
+ "": 0.38,
1820
+ "twenties": 0.1,
1821
+ "fourties": 0.37,
1822
+ "teens": 0.01,
1823
+ "fifties": 0.02,
1824
+ "seventies": 0,
1825
+ },
1826
+ "gender": {"male": 0.23, "": 0.38, "female": 0.39, "other": 0},
1827
+ },
1828
+ "users": 171,
1829
+ "size": 322898980,
1830
+ "checksum": "53c0c6e9c8fb523486ca8c4d8c20409dff6cff4a622f6ee5fb8c817748b3418c",
1831
+ "avgDurationSecs": 4.549,
1832
+ "validDurationSecs": 30471.791,
1833
+ "totalHrs": 14.98,
1834
+ "validHrs": 8.46,
1835
+ },
1836
+ "hu": {
1837
+ "duration": 88030549,
1838
+ "buckets": {
1839
+ "dev": 3865,
1840
+ "invalidated": 745,
1841
+ "other": 2600,
1842
+ "reported": 85,
1843
+ "test": 4020,
1844
+ "train": 6703,
1845
+ "validated": 14621,
1846
+ },
1847
+ "reportedSentences": 86,
1848
+ "clips": 17966,
1849
+ "splits": {
1850
+ "accent": {"": 1},
1851
+ "age": {
1852
+ "teens": 0.08,
1853
+ "": 0.28,
1854
+ "thirties": 0.14,
1855
+ "twenties": 0.4,
1856
+ "fifties": 0.06,
1857
+ "fourties": 0.02,
1858
+ "sixties": 0.01,
1859
+ },
1860
+ "gender": {"male": 0.6, "": 0.28, "female": 0.11},
1861
+ },
1862
+ "users": 197,
1863
+ "size": 572439425,
1864
+ "checksum": "76663918e570d3fdcd8b3dc7e8642e06a8b508ba19347fd8721542af5821fce0",
1865
+ "avgDurationSecs": 4.9,
1866
+ "validDurationSecs": 71640.58,
1867
+ "totalHrs": 24.45,
1868
+ "validHrs": 19.9,
1869
+ },
1870
+ "th": {
1871
+ "duration": 1224838524,
1872
+ "buckets": {
1873
+ "dev": 10769,
1874
+ "invalidated": 7934,
1875
+ "other": 159310,
1876
+ "reported": 3799,
1877
+ "test": 10769,
1878
+ "train": 30519,
1879
+ "validated": 119980,
1880
+ },
1881
+ "reportedSentences": 3799,
1882
+ "clips": 287224,
1883
+ "splits": {
1884
+ "accent": {"": 1},
1885
+ "age": {
1886
+ "twenties": 0.22,
1887
+ "": 0.4,
1888
+ "thirties": 0.06,
1889
+ "fourties": 0.04,
1890
+ "teens": 0.05,
1891
+ "fifties": 0.24,
1892
+ "eighties": 0,
1893
+ "sixties": 0,
1894
+ },
1895
+ "gender": {"male": 0.39, "": 0.4, "female": 0.21, "other": 0.01},
1896
+ },
1897
+ "users": 7414,
1898
+ "size": 7129246288,
1899
+ "checksum": "b30339fc5e6c55651f5b0978f959b49f8aaaaaa446a853e8aa05e526c5cc9baf",
1900
+ "avgDurationSecs": 4.264,
1901
+ "validDurationSecs": 511642.92,
1902
+ "totalHrs": 340.23,
1903
+ "validHrs": 142.12,
1904
+ },
1905
+ "lt": {
1906
+ "duration": 73294964,
1907
+ "buckets": {
1908
+ "dev": 3370,
1909
+ "invalidated": 551,
1910
+ "other": 1502,
1911
+ "reported": 122,
1912
+ "test": 3647,
1913
+ "train": 5143,
1914
+ "validated": 12163,
1915
+ },
1916
+ "reportedSentences": 122,
1917
+ "clips": 14216,
1918
+ "splits": {
1919
+ "accent": {"": 1},
1920
+ "age": {
1921
+ "twenties": 0.33,
1922
+ "": 0.24,
1923
+ "thirties": 0.28,
1924
+ "fifties": 0.05,
1925
+ "sixties": 0.01,
1926
+ "teens": 0.03,
1927
+ "fourties": 0.05,
1928
+ },
1929
+ "gender": {"male": 0.62, "": 0.24, "female": 0.14},
1930
+ },
1931
+ "users": 249,
1932
+ "size": 450546574,
1933
+ "checksum": "43a12031682ea130a3ea2bcfb3d3622a4776d0dc83ff70b25e3bfd6db76edfb4",
1934
+ "avgDurationSecs": 5.156,
1935
+ "validDurationSecs": 62710.091,
1936
+ "totalHrs": 20.35,
1937
+ "validHrs": 17.41,
1938
+ },
1939
+ "lg": {
1940
+ "duration": 1719856143,
1941
+ "buckets": {
1942
+ "dev": 12660,
1943
+ "invalidated": 38083,
1944
+ "other": 5946,
1945
+ "reported": 6039,
1946
+ "test": 12716,
1947
+ "train": 54975,
1948
+ "validated": 252176,
1949
+ },
1950
+ "reportedSentences": 6034,
1951
+ "clips": 296205,
1952
+ "splits": {
1953
+ "accent": {"": 1},
1954
+ "age": {
1955
+ "": 0.27,
1956
+ "thirties": 0.22,
1957
+ "twenties": 0.41,
1958
+ "fourties": 0.05,
1959
+ "fifties": 0.03,
1960
+ "teens": 0.01,
1961
+ "nineties": 0,
1962
+ "sixties": 0.01,
1963
+ },
1964
+ "gender": {"": 0.27, "female": 0.4, "male": 0.34},
1965
+ },
1966
+ "users": 486,
1967
+ "size": 10082077359,
1968
+ "checksum": "4628670760d5fc2f646422944229297ce4cd3fd969cba05374184786f052c45e",
1969
+ "avgDurationSecs": 5.806,
1970
+ "validDurationSecs": 1464210.404,
1971
+ "totalHrs": 477.73,
1972
+ "validHrs": 406.72,
1973
+ },
1974
+ "hi": {
1975
+ "duration": 60712692,
1976
+ "buckets": {
1977
+ "dev": 2175,
1978
+ "invalidated": 617,
1979
+ "other": 3280,
1980
+ "reported": 103,
1981
+ "test": 2693,
1982
+ "train": 4001,
1983
+ "validated": 8887,
1984
+ },
1985
+ "reportedSentences": 104,
1986
+ "clips": 12784,
1987
+ "splits": {
1988
+ "accent": {"": 1},
1989
+ "age": {
1990
+ "twenties": 0.34,
1991
+ "fourties": 0.03,
1992
+ "": 0.31,
1993
+ "thirties": 0.28,
1994
+ "teens": 0.01,
1995
+ "fifties": 0.01,
1996
+ "sixties": 0,
1997
+ },
1998
+ "gender": {"male": 0.65, "female": 0.04, "": 0.32},
1999
+ },
2000
+ "users": 276,
2001
+ "size": 358891308,
2002
+ "checksum": "58430ad90346a5a2bd60fc6608fc5a6a2531c46cc660b924137652a27f3e479d",
2003
+ "avgDurationSecs": 4.749,
2004
+ "validDurationSecs": 42205.389,
2005
+ "totalHrs": 16.86,
2006
+ "validHrs": 11.72,
2007
+ },
2008
+ "bas": {
2009
+ "duration": 9448128,
2010
+ "buckets": {
2011
+ "dev": 457,
2012
+ "invalidated": 482,
2013
+ "other": 4,
2014
+ "reported": 7,
2015
+ "test": 440,
2016
+ "train": 763,
2017
+ "validated": 1660,
2018
+ },
2019
+ "reportedSentences": 8,
2020
+ "clips": 2146,
2021
+ "splits": {
2022
+ "accent": {"": 1},
2023
+ "age": {"": 0.99, "fourties": 0.01},
2024
+ "gender": {"": 0.99, "female": 0.01},
2025
+ },
2026
+ "users": 30,
2027
+ "size": 52383598,
2028
+ "checksum": "9be95b0329c472a29d5aff9524a74362181f19454058c6697141e5968c05f367",
2029
+ "avgDurationSecs": 4.403,
2030
+ "validDurationSecs": 7308.431,
2031
+ "totalHrs": 2.62,
2032
+ "validHrs": 2.03,
2033
+ },
2034
+ "sk": {
2035
+ "duration": 68047884,
2036
+ "buckets": {
2037
+ "dev": 2290,
2038
+ "invalidated": 662,
2039
+ "other": 421,
2040
+ "reported": 30,
2041
+ "test": 2217,
2042
+ "train": 2991,
2043
+ "validated": 15929,
2044
+ },
2045
+ "reportedSentences": 31,
2046
+ "clips": 17012,
2047
+ "splits": {
2048
+ "accent": {"": 1},
2049
+ "age": {
2050
+ "": 0.52,
2051
+ "thirties": 0.23,
2052
+ "twenties": 0.04,
2053
+ "fourties": 0.11,
2054
+ "teens": 0.11,
2055
+ },
2056
+ "gender": {"": 0.52, "male": 0.37, "female": 0.09, "other": 0.02},
2057
+ },
2058
+ "users": 133,
2059
+ "size": 380843781,
2060
+ "checksum": "1e15ba6684a14ad6f198969891ae09f6f8c7665650469414dd3c45c04cac1cf6",
2061
+ "avgDurationSecs": 4,
2062
+ "validDurationSecs": 63715.891,
2063
+ "totalHrs": 18.9,
2064
+ "validHrs": 17.69,
2065
+ },
2066
+ "kmr": {
2067
+ "duration": 191414844,
2068
+ "buckets": {
2069
+ "dev": 2375,
2070
+ "invalidated": 1540,
2071
+ "other": 3652,
2072
+ "reported": 576,
2073
+ "test": 2401,
2074
+ "train": 2835,
2075
+ "validated": 38096,
2076
+ },
2077
+ "reportedSentences": 577,
2078
+ "clips": 43288,
2079
+ "splits": {
2080
+ "accent": {"": 1},
2081
+ "age": {
2082
+ "": 0.5,
2083
+ "twenties": 0.31,
2084
+ "thirties": 0.06,
2085
+ "fourties": 0.04,
2086
+ "fifties": 0.09,
2087
+ "teens": 0.02,
2088
+ "sixties": 0,
2089
+ },
2090
+ "gender": {"": 0.5, "male": 0.34, "female": 0.16},
2091
+ },
2092
+ "users": 295,
2093
+ "size": 1020029130,
2094
+ "checksum": "73b8936cc9e62cf1ed6bd2c8ec8666b0b8ac59669aa917676347a3a24ce8c206",
2095
+ "avgDurationSecs": 4.422,
2096
+ "validDurationSecs": 168456.383,
2097
+ "totalHrs": 53.17,
2098
+ "validHrs": 46.79,
2099
+ },
2100
+ "bg": {
2101
+ "duration": 42329448,
2102
+ "buckets": {
2103
+ "dev": 600,
2104
+ "invalidated": 346,
2105
+ "other": 1964,
2106
+ "reported": 68,
2107
+ "test": 1700,
2108
+ "train": 3076,
2109
+ "validated": 5387,
2110
+ },
2111
+ "reportedSentences": 69,
2112
+ "clips": 7697,
2113
+ "splits": {
2114
+ "accent": {"": 1},
2115
+ "age": {
2116
+ "fourties": 0.34,
2117
+ "thirties": 0.03,
2118
+ "": 0.43,
2119
+ "twenties": 0.19,
2120
+ "teens": 0.01,
2121
+ "sixties": 0,
2122
+ },
2123
+ "gender": {"male": 0.55, "female": 0.02, "": 0.43},
2124
+ },
2125
+ "users": 60,
2126
+ "size": 247038973,
2127
+ "checksum": "063a26e5267a0f4c804fcef64341c4e2255eb2987bff3082cfa79ef4f20f542e",
2128
+ "avgDurationSecs": 5.499,
2129
+ "validDurationSecs": 29625.664,
2130
+ "totalHrs": 11.75,
2131
+ "validHrs": 8.22,
2132
+ },
2133
+ "kk": {
2134
+ "duration": 6257556,
2135
+ "buckets": {
2136
+ "dev": 316,
2137
+ "invalidated": 188,
2138
+ "other": 0,
2139
+ "reported": 1,
2140
+ "test": 336,
2141
+ "train": 401,
2142
+ "validated": 1058,
2143
+ },
2144
+ "reportedSentences": 2,
2145
+ "clips": 1246,
2146
+ "splits": {
2147
+ "accent": {"": 1},
2148
+ "age": {
2149
+ "": 0.54,
2150
+ "thirties": 0.03,
2151
+ "twenties": 0.26,
2152
+ "teens": 0.06,
2153
+ "fifties": 0.11,
2154
+ },
2155
+ "gender": {"": 0.55, "male": 0.42, "female": 0.03},
2156
+ },
2157
+ "users": 75,
2158
+ "size": 35863149,
2159
+ "checksum": "dc3fd78b5a18010dc1edbe0fa2f875aaf288d6c35a7a7aa7b731159f47ab9255",
2160
+ "avgDurationSecs": 5.022,
2161
+ "validDurationSecs": 5313.398,
2162
+ "totalHrs": 1.73,
2163
+ "validHrs": 1.47,
2164
+ },
2165
+ "ba": {
2166
+ "duration": 956435580,
2167
+ "buckets": {
2168
+ "dev": 14577,
2169
+ "invalidated": 7855,
2170
+ "other": 624,
2171
+ "reported": 862,
2172
+ "test": 14563,
2173
+ "train": 118847,
2174
+ "validated": 207662,
2175
+ },
2176
+ "reportedSentences": 859,
2177
+ "clips": 216141,
2178
+ "splits": {
2179
+ "accent": {"": 1},
2180
+ "age": {
2181
+ "thirties": 0.17,
2182
+ "": 0.3,
2183
+ "fourties": 0.06,
2184
+ "fifties": 0.05,
2185
+ "twenties": 0.17,
2186
+ "sixties": 0.2,
2187
+ "seventies": 0,
2188
+ "teens": 0.04,
2189
+ },
2190
+ "gender": {"male": 0.3, "": 0.3, "female": 0.4},
2191
+ },
2192
+ "users": 866,
2193
+ "size": 5364795092,
2194
+ "checksum": "313d21aec123d5d8842d36e9e7b523087430f036b7a2b78d266b4899f49dd026",
2195
+ "avgDurationSecs": 4.425,
2196
+ "validDurationSecs": 918915.548,
2197
+ "totalHrs": 265.67,
2198
+ "validHrs": 255.25,
2199
+ },
2200
+ "gl": {
2201
+ "duration": 54358920,
2202
+ "buckets": {
2203
+ "dev": 2240,
2204
+ "invalidated": 290,
2205
+ "other": 3397,
2206
+ "reported": 163,
2207
+ "test": 2258,
2208
+ "train": 3062,
2209
+ "validated": 7618,
2210
+ },
2211
+ "reportedSentences": 164,
2212
+ "clips": 11305,
2213
+ "splits": {
2214
+ "accent": {"": 1},
2215
+ "age": {
2216
+ "": 0.36,
2217
+ "thirties": 0.42,
2218
+ "fifties": 0.09,
2219
+ "twenties": 0.07,
2220
+ "fourties": 0.05,
2221
+ "teens": 0,
2222
+ "sixties": 0.01,
2223
+ },
2224
+ "gender": {"": 0.37, "male": 0.41, "female": 0.21, "other": 0.01},
2225
+ },
2226
+ "users": 130,
2227
+ "size": 312424426,
2228
+ "checksum": "e4b45d11f9df9115c4cc9facf81f1f8cedf985dcc0d11d49b35cba5a9b7d3827",
2229
+ "avgDurationSecs": 4.808,
2230
+ "validDurationSecs": 36630.363,
2231
+ "totalHrs": 15.09,
2232
+ "validHrs": 10.17,
2233
+ },
2234
+ "ug": {
2235
+ "duration": 230330232,
2236
+ "buckets": {
2237
+ "dev": 2742,
2238
+ "invalidated": 1930,
2239
+ "other": 546,
2240
+ "reported": 180,
2241
+ "test": 2744,
2242
+ "train": 3292,
2243
+ "validated": 35711,
2244
+ },
2245
+ "reportedSentences": 181,
2246
+ "clips": 38187,
2247
+ "splits": {
2248
+ "accent": {"": 1},
2249
+ "age": {
2250
+ "": 0.65,
2251
+ "fifties": 0.02,
2252
+ "twenties": 0.14,
2253
+ "thirties": 0.1,
2254
+ "fourties": 0.07,
2255
+ "teens": 0,
2256
+ "eighties": 0.01,
2257
+ },
2258
+ "gender": {"": 0.65, "male": 0.25, "female": 0.09, "other": 0},
2259
+ },
2260
+ "users": 382,
2261
+ "size": 1342350136,
2262
+ "checksum": "24f4eb359b09c1e93b9bc00d7f3784b63295f73b02afe871db53fb3564618004",
2263
+ "avgDurationSecs": 6.032,
2264
+ "validDurationSecs": 215395.892,
2265
+ "totalHrs": 63.98,
2266
+ "validHrs": 59.83,
2267
+ },
2268
+ "hy-AM": {
2269
+ "duration": 12582828,
2270
+ "buckets": {
2271
+ "dev": 229,
2272
+ "invalidated": 54,
2273
+ "other": 932,
2274
+ "reported": 24,
2275
+ "test": 335,
2276
+ "train": 499,
2277
+ "validated": 1064,
2278
+ },
2279
+ "reportedSentences": 25,
2280
+ "clips": 2050,
2281
+ "splits": {
2282
+ "accent": {"": 1},
2283
+ "age": {
2284
+ "": 0.36,
2285
+ "thirties": 0.18,
2286
+ "twenties": 0.3,
2287
+ "fifties": 0.05,
2288
+ "teens": 0.11,
2289
+ },
2290
+ "gender": {"": 0.36, "male": 0.29, "female": 0.35},
2291
+ },
2292
+ "users": 32,
2293
+ "size": 73751770,
2294
+ "checksum": "eef313003c5d83e0a716625a31114ccf8d996e35ddf36fa9bfefc920f350b999",
2295
+ "avgDurationSecs": 6.138,
2296
+ "validDurationSecs": 6530.795,
2297
+ "totalHrs": 3.49,
2298
+ "validHrs": 1.81,
2299
+ },
2300
+ "be": {
2301
+ "duration": 3555221004,
2302
+ "buckets": {
2303
+ "dev": 15803,
2304
+ "invalidated": 22178,
2305
+ "other": 40596,
2306
+ "reported": 3083,
2307
+ "test": 15801,
2308
+ "train": 314305,
2309
+ "validated": 677936,
2310
+ },
2311
+ "reportedSentences": 3082,
2312
+ "clips": 740710,
2313
+ "splits": {
2314
+ "accent": {"": 1},
2315
+ "age": {
2316
+ "": 0.77,
2317
+ "fourties": 0.07,
2318
+ "thirties": 0.08,
2319
+ "twenties": 0.06,
2320
+ "teens": 0.01,
2321
+ "fifties": 0,
2322
+ "sixties": 0,
2323
+ "seventies": 0,
2324
+ },
2325
+ "gender": {"": 0.76, "male": 0.1, "female": 0.14, "other": 0},
2326
+ },
2327
+ "users": 6160,
2328
+ "size": 20224853323,
2329
+ "checksum": "90845533f7bc31c0eed59f1a4f88639879a793b8b2637d996d73a930713aad40",
2330
+ "avgDurationSecs": 4.8,
2331
+ "validDurationSecs": 3253921.652,
2332
+ "totalHrs": 987.56,
2333
+ "validHrs": 903.86,
2334
+ },
2335
+ "ur": {
2336
+ "duration": 12235824,
2337
+ "buckets": {
2338
+ "dev": 341,
2339
+ "invalidated": 119,
2340
+ "other": 1650,
2341
+ "reported": 25,
2342
+ "test": 341,
2343
+ "train": 469,
2344
+ "validated": 1151,
2345
+ },
2346
+ "reportedSentences": 25,
2347
+ "clips": 2920,
2348
+ "splits": {
2349
+ "accent": {"": 1},
2350
+ "age": {
2351
+ "twenties": 0.33,
2352
+ "": 0.3,
2353
+ "fourties": 0.26,
2354
+ "thirties": 0.08,
2355
+ "teens": 0.03,
2356
+ },
2357
+ "gender": {"male": 0.57, "": 0.3, "female": 0.13},
2358
+ },
2359
+ "users": 48,
2360
+ "size": 71258354,
2361
+ "checksum": "f9a7c509c2152d4dbbf7187b477817c413cd1b725d5749f19cbdff01babee427",
2362
+ "avgDurationSecs": 4.19,
2363
+ "validDurationSecs": 4823.094,
2364
+ "totalHrs": 3.39,
2365
+ "validHrs": 1.33,
2366
+ },
2367
+ "gn": {
2368
+ "duration": 8325792,
2369
+ "buckets": {
2370
+ "dev": 93,
2371
+ "invalidated": 61,
2372
+ "other": 1277,
2373
+ "reported": 13,
2374
+ "test": 159,
2375
+ "train": 293,
2376
+ "validated": 545,
2377
+ },
2378
+ "reportedSentences": 14,
2379
+ "clips": 1883,
2380
+ "splits": {
2381
+ "accent": {"": 1},
2382
+ "age": {"": 0.58, "twenties": 0.39, "thirties": 0.04},
2383
+ "gender": {"": 0.58, "male": 0.31, "female": 0.12},
2384
+ },
2385
+ "users": 58,
2386
+ "size": 45681477,
2387
+ "checksum": "f992e3e60efa3b39ceb04a530b3787b0ca170e8e0f85cbca7ac66ff5d5c2c989",
2388
+ "avgDurationSecs": 4.422,
2389
+ "validDurationSecs": 2409.749,
2390
+ "totalHrs": 2.31,
2391
+ "validHrs": 0.66,
2392
+ },
2393
+ "sr": {
2394
+ "duration": 6546024,
2395
+ "buckets": {
2396
+ "dev": 572,
2397
+ "invalidated": 31,
2398
+ "other": 405,
2399
+ "reported": 15,
2400
+ "test": 598,
2401
+ "train": 706,
2402
+ "validated": 1878,
2403
+ },
2404
+ "reportedSentences": 16,
2405
+ "clips": 2314,
2406
+ "splits": {
2407
+ "accent": {"": 1},
2408
+ "age": {
2409
+ "twenties": 0.69,
2410
+ "": 0.14,
2411
+ "fifties": 0.01,
2412
+ "fourties": 0.11,
2413
+ "thirties": 0.04,
2414
+ "teens": 0,
2415
+ },
2416
+ "gender": {"male": 0.39, "": 0.14, "female": 0.47},
2417
+ },
2418
+ "users": 51,
2419
+ "size": 36210414,
2420
+ "checksum": "03458e5beb7f3a99134aa1cafe086c1a1d39d123a1ad24b55c439935a6939b74",
2421
+ "avgDurationSecs": 2.829,
2422
+ "validDurationSecs": 5312.633,
2423
+ "totalHrs": 1.81,
2424
+ "validHrs": 1.47,
2425
+ },
2426
+ "uz": {
2427
+ "duration": 817646544,
2428
+ "buckets": {
2429
+ "dev": 10849,
2430
+ "invalidated": 11276,
2431
+ "other": 119461,
2432
+ "reported": 1570,
2433
+ "test": 11598,
2434
+ "train": 39456,
2435
+ "validated": 72541,
2436
+ },
2437
+ "reportedSentences": 1559,
2438
+ "clips": 203278,
2439
+ "splits": {
2440
+ "accent": {"": 1},
2441
+ "age": {
2442
+ "twenties": 0.38,
2443
+ "": 0.42,
2444
+ "thirties": 0.01,
2445
+ "teens": 0.18,
2446
+ "fifties": 0,
2447
+ "fourties": 0.01,
2448
+ "nineties": 0,
2449
+ },
2450
+ "gender": {"male": 0.42, "": 0.42, "female": 0.17},
2451
+ },
2452
+ "users": 1355,
2453
+ "size": 4555245955,
2454
+ "checksum": "5c66de6387d70c0660d2ad06539bafced11544ad029d2c8b02fddc21389c3e21",
2455
+ "avgDurationSecs": 4.022,
2456
+ "validDurationSecs": 291782.18,
2457
+ "totalHrs": 227.12,
2458
+ "validHrs": 81.05,
2459
+ },
2460
+ "mr": {
2461
+ "duration": 18138924,
2462
+ "buckets": {
2463
+ "dev": 269,
2464
+ "invalidated": 1064,
2465
+ "other": 1081,
2466
+ "reported": 27,
2467
+ "test": 306,
2468
+ "train": 429,
2469
+ "validated": 1004,
2470
+ },
2471
+ "reportedSentences": 28,
2472
+ "clips": 3149,
2473
+ "splits": {
2474
+ "accent": {"": 1},
2475
+ "age": {"thirties": 0.63, "sixties": 0.02, "twenties": 0.3, "": 0.05},
2476
+ "gender": {"male": 0.72, "female": 0.23, "": 0.05},
2477
+ },
2478
+ "users": 14,
2479
+ "size": 106764053,
2480
+ "checksum": "511fc22b802978cdee292034d7c6332b7d031134eabb5987b2e31037694be31f",
2481
+ "avgDurationSecs": 5.76,
2482
+ "validDurationSecs": 5783.258,
2483
+ "totalHrs": 5.03,
2484
+ "validHrs": 1.6,
2485
+ },
2486
+ "da": {
2487
+ "duration": 25078464,
2488
+ "buckets": {
2489
+ "dev": 1259,
2490
+ "invalidated": 205,
2491
+ "other": 93,
2492
+ "reported": 100,
2493
+ "test": 1390,
2494
+ "train": 1748,
2495
+ "validated": 5460,
2496
+ },
2497
+ "reportedSentences": 101,
2498
+ "clips": 5758,
2499
+ "splits": {
2500
+ "accent": {"": 1},
2501
+ "age": {
2502
+ "": 0.41,
2503
+ "thirties": 0.3,
2504
+ "twenties": 0.15,
2505
+ "sixties": 0,
2506
+ "fourties": 0.09,
2507
+ "fifties": 0.05,
2508
+ "teens": 0,
2509
+ },
2510
+ "gender": {"": 0.41, "female": 0.1, "male": 0.49},
2511
+ },
2512
+ "users": 137,
2513
+ "size": 143294716,
2514
+ "checksum": "3105db00bf917f3ea91b5fb43e6270c4014a56f9b247341571f67f6fbb66c37e",
2515
+ "avgDurationSecs": 4.355,
2516
+ "validDurationSecs": 23780.551,
2517
+ "totalHrs": 6.96,
2518
+ "validHrs": 6.6,
2519
+ },
2520
+ "myv": {
2521
+ "duration": 8153208,
2522
+ "buckets": {
2523
+ "dev": 349,
2524
+ "invalidated": 4,
2525
+ "other": 298,
2526
+ "reported": 9,
2527
+ "test": 294,
2528
+ "train": 479,
2529
+ "validated": 1124,
2530
+ },
2531
+ "reportedSentences": 10,
2532
+ "clips": 1426,
2533
+ "splits": {
2534
+ "accent": {"": 1},
2535
+ "age": {"sixties": 0.29, "": 0.34, "thirties": 0.34, "twenties": 0.04},
2536
+ "gender": {"male": 0.66, "": 0.34},
2537
+ },
2538
+ "users": 5,
2539
+ "size": 47661126,
2540
+ "checksum": "f61f4fed7c1e8a32c5b58fcde3db2fc2cc8e743bb9f5162191670ddcf23022fc",
2541
+ "avgDurationSecs": 5.718,
2542
+ "validDurationSecs": 6426.512,
2543
+ "totalHrs": 2.26,
2544
+ "validHrs": 1.78,
2545
+ },
2546
+ "nn-NO": {
2547
+ "duration": 1388556,
2548
+ "buckets": {
2549
+ "dev": 49,
2550
+ "invalidated": 2,
2551
+ "other": 57,
2552
+ "reported": 4,
2553
+ "test": 73,
2554
+ "train": 107,
2555
+ "validated": 234,
2556
+ },
2557
+ "reportedSentences": 5,
2558
+ "clips": 293,
2559
+ "splits": {
2560
+ "accent": {"": 1},
2561
+ "age": {"": 0.44, "thirties": 0.51, "twenties": 0.05},
2562
+ "gender": {"": 0.44, "female": 0.51, "male": 0.05},
2563
+ },
2564
+ "users": 13,
2565
+ "size": 8143783,
2566
+ "checksum": "fe619255f01ea4badb373b4d0edbacd2146ae002967a28082724afd543306ea9",
2567
+ "avgDurationSecs": 4.739,
2568
+ "validDurationSecs": 1108.949,
2569
+ "totalHrs": 0.38,
2570
+ "validHrs": 0.3,
2571
+ },
2572
+ "ha": {
2573
+ "duration": 37282500,
2574
+ "buckets": {
2575
+ "dev": 0,
2576
+ "invalidated": 152,
2577
+ "other": 5614,
2578
+ "reported": 13,
2579
+ "test": 892,
2580
+ "train": 1941,
2581
+ "validated": 2833,
2582
+ },
2583
+ "reportedSentences": 13,
2584
+ "clips": 8599,
2585
+ "splits": {
2586
+ "accent": {"": 1},
2587
+ "age": {
2588
+ "": 0.18,
2589
+ "thirties": 0.76,
2590
+ "twenties": 0.03,
2591
+ "fourties": 0,
2592
+ "fifties": 0.03,
2593
+ },
2594
+ "gender": {"": 0.18, "male": 0.53, "female": 0.29},
2595
+ },
2596
+ "users": 25,
2597
+ "size": 218110720,
2598
+ "checksum": "e3bc71d73407b0db85e5254750f4eb8dd184d457513ddaf9544f324f3ce797db",
2599
+ "avgDurationSecs": 4.336,
2600
+ "validDurationSecs": 12282.977,
2601
+ "totalHrs": 10.35,
2602
+ "validHrs": 3.41,
2603
+ },
2604
+ "ckb": {
2605
+ "duration": 134665092,
2606
+ "buckets": {
2607
+ "dev": 4137,
2608
+ "invalidated": 1057,
2609
+ "other": 116,
2610
+ "reported": 1602,
2611
+ "test": 4192,
2612
+ "train": 6004,
2613
+ "validated": 33957,
2614
+ },
2615
+ "reportedSentences": 1603,
2616
+ "clips": 35130,
2617
+ "splits": {
2618
+ "accent": {"": 1},
2619
+ "age": {
2620
+ "": 0.45,
2621
+ "thirties": 0.13,
2622
+ "twenties": 0.39,
2623
+ "fourties": 0.02,
2624
+ "teens": 0.01,
2625
+ "fifties": 0,
2626
+ },
2627
+ "gender": {"": 0.43, "male": 0.51, "female": 0.05, "other": 0.01},
2628
+ },
2629
+ "users": 209,
2630
+ "size": 727060125,
2631
+ "checksum": "f1a81c037ea3e44b47bd762740ac30dc9b630166dae9c5f23a8f74967bdb9861",
2632
+ "avgDurationSecs": 3.833,
2633
+ "validDurationSecs": 130168.589,
2634
+ "totalHrs": 37.4,
2635
+ "validHrs": 36.15,
2636
+ },
2637
+ "ml": {
2638
+ "duration": 9095544,
2639
+ "buckets": {
2640
+ "dev": 0,
2641
+ "invalidated": 0,
2642
+ "other": 1926,
2643
+ "reported": 106,
2644
+ "test": 0,
2645
+ "train": 302,
2646
+ "validated": 302,
2647
+ },
2648
+ "reportedSentences": 107,
2649
+ "clips": 2228,
2650
+ "splits": {
2651
+ "accent": {"": 1},
2652
+ "age": {"": 0.48, "twenties": 0.52},
2653
+ "gender": {"": 0.48, "male": 0.52},
2654
+ },
2655
+ "users": 10,
2656
+ "size": 53097264,
2657
+ "checksum": "64919d4bdbb3b439840afbfe7fc2698a670da9ffba41d56dacf42d1587fd8608",
2658
+ "avgDurationSecs": 4.082,
2659
+ "validDurationSecs": 1232.879,
2660
+ "totalHrs": 2.52,
2661
+ "validHrs": 0.34,
2662
+ },
2663
+ "mdf": {
2664
+ "duration": 1697688,
2665
+ "buckets": {
2666
+ "dev": 45,
2667
+ "invalidated": 4,
2668
+ "other": 85,
2669
+ "reported": 4,
2670
+ "test": 72,
2671
+ "train": 115,
2672
+ "validated": 232,
2673
+ },
2674
+ "reportedSentences": 5,
2675
+ "clips": 321,
2676
+ "splits": {
2677
+ "accent": {"": 1},
2678
+ "age": {"sixties": 0.06, "": 0.57, "fourties": 0.37},
2679
+ "gender": {"male": 0.06, "": 0.57, "female": 0.37},
2680
+ },
2681
+ "users": 8,
2682
+ "size": 9972105,
2683
+ "checksum": "f8f2506fa98a1243ec4dd0c848959ab60ed140aed852820ddf5a999a2662f0d7",
2684
+ "avgDurationSecs": 5.289,
2685
+ "validDurationSecs": 1226.989,
2686
+ "totalHrs": 0.47,
2687
+ "validHrs": 0.34,
2688
+ },
2689
+ "sw": {
2690
+ "duration": 2359703628,
2691
+ "buckets": {
2692
+ "dev": 8805,
2693
+ "invalidated": 7756,
2694
+ "other": 337702,
2695
+ "reported": 199,
2696
+ "test": 8941,
2697
+ "train": 19606,
2698
+ "validated": 99733,
2699
+ },
2700
+ "reportedSentences": 194,
2701
+ "clips": 445191,
2702
+ "splits": {
2703
+ "accent": {"": 1},
2704
+ "age": {
2705
+ "": 0.28,
2706
+ "twenties": 0.45,
2707
+ "thirties": 0.15,
2708
+ "teens": 0,
2709
+ "fifties": 0.06,
2710
+ "fourties": 0.05,
2711
+ "sixties": 0.01,
2712
+ },
2713
+ "gender": {"": 0.25, "male": 0.41, "female": 0.34},
2714
+ },
2715
+ "users": 288,
2716
+ "size": 13818063727,
2717
+ "checksum": "fc84436e79671fa55241525aba63d0d53a85a24967f60a15a691f8f831704630",
2718
+ "avgDurationSecs": 5.3,
2719
+ "validDurationSecs": 528627.762,
2720
+ "totalHrs": 655.47,
2721
+ "validHrs": 146.84,
2722
+ },
2723
+ "sat": {
2724
+ "duration": 1729728,
2725
+ "buckets": {
2726
+ "dev": 0,
2727
+ "invalidated": 10,
2728
+ "other": 178,
2729
+ "reported": 5,
2730
+ "test": 46,
2731
+ "train": 106,
2732
+ "validated": 152,
2733
+ },
2734
+ "reportedSentences": 6,
2735
+ "clips": 340,
2736
+ "splits": {
2737
+ "accent": {"": 1},
2738
+ "age": {
2739
+ "": 0.15,
2740
+ "twenties": 0.57,
2741
+ "fourties": 0.03,
2742
+ "fifties": 0.03,
2743
+ "teens": 0.03,
2744
+ "thirties": 0.19,
2745
+ },
2746
+ "gender": {"": 0.1, "male": 0.87, "female": 0.03},
2747
+ },
2748
+ "users": 8,
2749
+ "size": 9017013,
2750
+ "checksum": "4e813435cfae5e88f90e96fa9966022be4ea6b4f37fa798b7f61d53a67671191",
2751
+ "avgDurationSecs": 5.087,
2752
+ "validDurationSecs": 773.29,
2753
+ "totalHrs": 0.48,
2754
+ "validHrs": 0.21,
2755
+ },
2756
+ "sah": {
2757
+ "duration": 23990556,
2758
+ "buckets": {
2759
+ "dev": 1083,
2760
+ "invalidated": 90,
2761
+ "other": 32,
2762
+ "test": 1165,
2763
+ "train": 1567,
2764
+ "validated": 3881,
2765
+ },
2766
+ "clips": 4003,
2767
+ "splits": {
2768
+ "accent": {"": 1},
2769
+ "age": {
2770
+ "": 0.36,
2771
+ "twenties": 0.02,
2772
+ "fourties": 0.07,
2773
+ "thirties": 0.44,
2774
+ "teens": 0.11,
2775
+ "fifties": 0,
2776
+ },
2777
+ "gender": {"": 0.36, "male": 0.54, "female": 0.1},
2778
+ },
2779
+ "users": 48,
2780
+ "size": 183316054,
2781
+ "checksum": "0e6cef17a832f265a6964dfbecbf6c2355f1c4652bc143a1714e43b35e089d54",
2782
+ "avgDurationSecs": 5.993,
2783
+ "validDurationSecs": 23259.392,
2784
+ "totalHrs": 6.66,
2785
+ "validHrs": 6.46,
2786
+ },
2787
+ "vot": {
2788
+ "duration": 1025976,
2789
+ "buckets": {
2790
+ "dev": 0,
2791
+ "invalidated": 322,
2792
+ "other": 10,
2793
+ "test": 6,
2794
+ "train": 88,
2795
+ "validated": 94,
2796
+ },
2797
+ "clips": 426,
2798
+ "splits": {
2799
+ "accent": {"": 1},
2800
+ "age": {"": 0.25, "twenties": 0.73, "teens": 0.01},
2801
+ "gender": {"": 0.25, "male": 0.75},
2802
+ },
2803
+ "users": 5,
2804
+ "size": 7892848,
2805
+ "checksum": "b4a512348d76caac3fca3f8e31047d6f6fbc832e75a0fb7ee9a897bd11446c10",
2806
+ "avgDurationSecs": 2.408,
2807
+ "validDurationSecs": 226.389,
2808
+ "totalHrs": 0.28,
2809
+ "validHrs": 0.06,
2810
+ },
2811
+ "az": {
2812
+ "duration": 493344,
2813
+ "buckets": {
2814
+ "dev": 15,
2815
+ "invalidated": 20,
2816
+ "other": 0,
2817
+ "test": 18,
2818
+ "train": 39,
2819
+ "validated": 72,
2820
+ },
2821
+ "clips": 92,
2822
+ "splits": {
2823
+ "accent": {"": 1},
2824
+ "age": {"": 0.3, "twenties": 0.66, "fourties": 0.03},
2825
+ "gender": {"": 0.3, "male": 0.7},
2826
+ },
2827
+ "users": 10,
2828
+ "size": 2871153,
2829
+ "checksum": "9855029a8cedcce51a6b028795ac89040699ff34bbd632b6ab34651fa2f2838b",
2830
+ "avgDurationSecs": 5.362,
2831
+ "validDurationSecs": 386.095,
2832
+ "totalHrs": 0.13,
2833
+ "validHrs": 0.1,
2834
+ },
2835
+ "mk": {
2836
+ "duration": 691272,
2837
+ "buckets": {
2838
+ "dev": 0,
2839
+ "invalidated": 4,
2840
+ "other": 44,
2841
+ "test": 0,
2842
+ "train": 91,
2843
+ "validated": 91,
2844
+ },
2845
+ "clips": 139,
2846
+ "splits": {"accent": {"": 1}, "age": {"": 1}, "gender": {"": 1}},
2847
+ "users": 3,
2848
+ "size": 4058513,
2849
+ "checksum": "d7bbfc7f39bd1643c6570478dbed4f115e93f5ec9bc5f77d27256013ae16f4b8",
2850
+ "avgDurationSecs": 4.973,
2851
+ "validDurationSecs": 452.559,
2852
+ "totalHrs": 0.19,
2853
+ "validHrs": 0.12,
2854
+ },
2855
+ "ig": {
2856
+ "duration": 32472,
2857
+ "buckets": {
2858
+ "dev": 0,
2859
+ "invalidated": 0,
2860
+ "other": 5,
2861
+ "test": 0,
2862
+ "train": 0,
2863
+ "validated": 0,
2864
+ },
2865
+ "clips": 5,
2866
+ "splits": {"accent": {"": 1}, "age": {"": 1}, "gender": {"": 1}},
2867
+ "users": 1,
2868
+ "size": 192599,
2869
+ "checksum": "5a7666730a84b5a2b24ea32b1251a6827d7de0ea60120573796a4ecbe8bc1888",
2870
+ "avgDurationSecs": 6.494,
2871
+ "validDurationSecs": 0,
2872
+ "totalHrs": 0,
2873
+ "validHrs": 0,
2874
+ },
2875
+ },
2876
+ "totalDuration": 65676839253,
2877
+ "totalValidDurationSecs": 50841646,
2878
+ "totalHrs": 18243,
2879
+ "totalValidHrs": 14122,
2880
+ "version": "9.0.0",
2881
+ }