parquet-converter commited on
Commit
8f66811
1 Parent(s): 00f96ff

Update parquet files

Browse files
LICENSE.txt DELETED
@@ -1,21 +0,0 @@
1
- MIT License
2
-
3
- Copyright (c) 2018 soerenab
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
README.md DELETED
@@ -1,10 +0,0 @@
1
- # AudioMNIST
2
-
3
- This is a HuggingFace Datasets adaptation of the AudioMNIST dataset
4
-
5
- Original Dataset:
6
- https://github.com/soerenab/AudioMNIST
7
-
8
- ---
9
- license: mit
10
- ---
 
 
 
 
 
 
 
 
 
 
 
audiomnist.py DELETED
@@ -1,154 +0,0 @@
1
- # coding=utf-8
2
- # Copyright 2022 Artem Ploujnikov (HuggingFace adaptation only)
3
- #
4
- # Original dataset: https://github.com/soerenab/AudioMNIST
5
- #
6
- # If you use this dataset, please cite the following article:
7
- # @ARTICLE{becker2018interpreting,
8
- # author = {Becker, S\"oren and Ackermann, Marcel and Lapuschkin, Sebastian and M\"uller, Klaus-Robert and Samek, Wojciech},
9
- # title = {Interpreting and Explaining Deep Neural Networks for Classification of Audio Signals},
10
- # journal = {CoRR},
11
- # volume = {abs/1807.03418},
12
- # year = {2018},
13
- # archivePrefix = {arXiv},
14
- # eprint = {1807.03418},
15
- # }
16
-
17
-
18
- # Lint as: python3
19
- import json
20
- import logging
21
- import re
22
- import os
23
-
24
- import datasets
25
-
26
- from glob import glob
27
-
28
- logger = logging.getLogger(__name__)
29
-
30
- _DESCRIPTION = """\
31
- AudioMNIST, a research baseline dataset
32
- """
33
-
34
- _BASE_URL = "https://huggingface.co/datasets/flexthink/audiomnist/resolve/main"
35
- _HOMEPAGE_URL = "https://huggingface.co/datasets/flexthink/audiomnist"
36
- _SPLITS = ["train", "valid", "test"]
37
- _GENDERS = ["female", "male"]
38
- _ACCENTS = [
39
- "Arabic",
40
- "Brasilian",
41
- "Chinese",
42
- "Danish",
43
- "English",
44
- "French",
45
- "German",
46
- "Italian",
47
- "Levant",
48
- "Madras",
49
- "South African",
50
- "South Korean",
51
- "Spanish",
52
- "Tamil",
53
- ]
54
- _SAMPLING_RATE = 48000
55
-
56
- _ACCENT_MAP = {
57
- "german": "German",
58
- "Egyptian_American?": "Arabic",
59
- "German/Spanish": "German",
60
- }
61
-
62
- _META_FILE = "audioMNIST_meta.json"
63
- _RE_FILE_NAME = re.compile("(?P<digit>\d+)_(?P<speaker_id>\d+)_(?P<sample_idx>\d+).wav")
64
-
65
-
66
- class GraphemeToPhoneme(datasets.GeneratorBasedBuilder):
67
- def __init__(self, base_url=None, splits=None, *args, **kwargs):
68
- super().__init__(*args, **kwargs)
69
- self.base_url = base_url or _BASE_URL
70
- self.splits = splits or _SPLITS
71
-
72
- def _info(self):
73
- return datasets.DatasetInfo(
74
- description=_DESCRIPTION,
75
- features=datasets.Features(
76
- {
77
- "file_name": datasets.Value("string"),
78
- "audio": datasets.features.Audio(sampling_rate=_SAMPLING_RATE),
79
- "speaker_id": datasets.Value("string"),
80
- "age": datasets.Value("int8"),
81
- "gender": datasets.ClassLabel(names=_GENDERS),
82
- "accent": datasets.ClassLabel(names=_ACCENTS),
83
- "native_speaker": datasets.Value("bool"),
84
- "origin": datasets.Value("string"),
85
- "digit": datasets.Value("int8"),
86
- },
87
- ),
88
- supervised_keys=None,
89
- homepage=_HOMEPAGE_URL,
90
- )
91
-
92
- def _get_url(self, split):
93
- return f"{self.base_url}/dataset/{split}.tar.gz"
94
-
95
- def _get_meta_url(self):
96
- return f"{self.base_url}/meta/{_META_FILE}"
97
-
98
- def _split_generator(self, dl_manager, split):
99
- archive_url = self._get_url(split)
100
- archive_path = dl_manager.download_and_extract(archive_url)
101
- meta_url = self._get_meta_url()
102
- meta_file = dl_manager.download(meta_url)
103
- speaker_map = self._get_speaker_map(meta_file)
104
- return datasets.SplitGenerator(
105
- name=split,
106
- gen_kwargs={
107
- "archive_path": archive_path,
108
- "speaker_map": speaker_map,
109
- },
110
- )
111
-
112
- def _get_speaker_map(self, file_name):
113
- with open(file_name) as speaker_file:
114
- result = json.load(speaker_file)
115
- for entry in result.values():
116
- entry["accent"] = _ACCENT_MAP.get(
117
- entry["accent"], entry["accent"])
118
- return result
119
-
120
- def _split_generators(self, dl_manager):
121
- return [self._split_generator(dl_manager, split) for split in self.splits]
122
-
123
- def _map_speaker_info(self, speaker_info):
124
- result = dict(speaker_info)
125
- result["native_speaker"] = speaker_info["native speaker"] == "yes"
126
- del result["native speaker"]
127
- del result["recordingdate"]
128
- del result["recordingroom"]
129
- return result
130
-
131
- def _generate_examples(self, archive_path, speaker_map):
132
- wav_files = glob(os.path.join(archive_path, 'dataset', '**', '*.wav'))
133
- for path in wav_files:
134
- match = _RE_FILE_NAME.search(path)
135
- if not match:
136
- logger.warn(
137
- f"File {path} does not match the naming convention"
138
- )
139
- continue
140
- digit, speaker_id = [
141
- match.group(key) for key in ["digit", "speaker_id"]
142
- ]
143
- with open(path, 'rb') as wav_file:
144
- sample = {
145
- "digit": digit,
146
- "speaker_id": speaker_id,
147
- "file_name": os.path.join(archive_path, path),
148
- "audio": {"path": path, "bytes": wav_file.read()},
149
- }
150
- if speaker_id not in speaker_map:
151
- logger.warn(f"Speaker {speaker_id} not found")
152
- speaker_info = speaker_map[speaker_id]
153
- sample.update(self._map_speaker_info(speaker_info))
154
- yield path, sample
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
dataset/valid.tar.gz → default/audiomnist-test.parquet RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:c3cc91b5940b0da04f5adeb391f8ec3fbcd4913ba396fd009fc381ba1b7e7c42
3
- size 47523840
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:29ee0bb651638351c8c0454ce1e41bb3c5a6da0707a7d7a6984ac533acb8e9f8
3
+ size 36937445
dataset/train.tar.gz → default/audiomnist-train-00000-of-00004.parquet RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:cc29e0b30c10ed741f1f1799d691ba24448853f0ef0fef7024908c3eb34c6d05
3
- size 1811968000
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8a520983eafdd860221fa38b64696f2a13b941ef3cf5cdf4d38fc28178312fbf
3
+ size 420162562
default/audiomnist-train-00001-of-00004.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:298728b21a95608d6e7fb85976d4b0961c7d375eb5eac577c2420d0989091a4f
3
+ size 401445880
default/audiomnist-train-00002-of-00004.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c6a5e632672aa432c3f05c068a96729ef0971fcb087902f6f83783adc0d21621
3
+ size 457731412
default/audiomnist-train-00003-of-00004.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a020d484e44843696e4179c63506905d32b5bf7333e8ecd061249f0da59e2236
3
+ size 131232550
dataset/test.tar.gz → default/audiomnist-valid.parquet RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:99f1b4b43237d08e2b515d20f215af77ea5d2a609a97dc05c090fca499587634
3
- size 47523840
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1bc52eea5ec185593576e6e97de28101e9b7bbe36686c320385d89ccb2f46db5
3
+ size 36777258
meta/audioMNIST_meta.json DELETED
@@ -1,542 +0,0 @@
1
- {
2
- "01": {
3
- "accent": "german",
4
- "age": 30,
5
- "gender": "male",
6
- "native speaker": "no",
7
- "origin": "Europe, Germany, Wuerzburg",
8
- "recordingdate": "17-06-22-11-04-28",
9
- "recordingroom": "Kino"
10
- },
11
- "02": {
12
- "accent": "German",
13
- "age": "25",
14
- "gender": "male",
15
- "native speaker": "no",
16
- "origin": "Europe, Germany, Hamburg",
17
- "recordingdate": "17-06-26-17-57-29",
18
- "recordingroom": "Kino"
19
- },
20
- "03": {
21
- "accent": "German",
22
- "age": "31",
23
- "gender": "male",
24
- "native speaker": "no",
25
- "origin": "Europe, Germany, Bremen",
26
- "recordingdate": "17-06-30-17-34-51",
27
- "recordingroom": "Kino"
28
- },
29
- "04": {
30
- "accent": "German",
31
- "age": "23",
32
- "gender": "male",
33
- "native speaker": "no",
34
- "origin": "Europe, Germany, Helmstedt",
35
- "recordingdate": "17-06-30-18-09-14",
36
- "recordingroom": "Kino"
37
- },
38
- "05": {
39
- "accent": "German",
40
- "age": "25",
41
- "gender": "male",
42
- "native speaker": "no",
43
- "origin": "Europe, Germany, Hameln",
44
- "recordingdate": "17-07-06-10-53-10",
45
- "recordingroom": "Kino"
46
- },
47
- "06": {
48
- "accent": "German",
49
- "age": "25",
50
- "gender": "male",
51
- "native speaker": "no",
52
- "origin": "Europe, Germany, Dortmund",
53
- "recordingdate": "17-07-06-11-23-34",
54
- "recordingroom": "Kino"
55
- },
56
- "07": {
57
- "accent": "German/Spanish",
58
- "age": "27",
59
- "gender": "male",
60
- "native speaker": "no",
61
- "origin": "Europe, Spanien, Mallorca",
62
- "recordingdate": "17-07-10-17-06-17",
63
- "recordingroom": "Kino"
64
- },
65
- "08": {
66
- "accent": "German",
67
- "age": "41",
68
- "gender": "male",
69
- "native speaker": "no",
70
- "origin": "Europe, Germany, Ludwigsfelde",
71
- "recordingdate": "17-07-10-17-39-41",
72
- "recordingroom": "Kino"
73
- },
74
- "09": {
75
- "accent": "South Korean",
76
- "age": "35",
77
- "gender": "male",
78
- "native speaker": "no",
79
- "origin": "Asia, South Korea, Seoul",
80
- "recordingdate": "17-07-12-17-03-59",
81
- "recordingroom": "Kino"
82
- },
83
- "10": {
84
- "accent": "German",
85
- "age": "36",
86
- "gender": "male",
87
- "native speaker": "no",
88
- "origin": "Europe, Germany, Lemgo",
89
- "recordingdate": "17-07-12-17-31-43",
90
- "recordingroom": "Kino"
91
- },
92
- "11": {
93
- "accent": "German",
94
- "age": "33",
95
- "gender": "male",
96
- "native speaker": "no",
97
- "origin": "Europe, Germany, Berlin",
98
- "recordingdate": "17-07-12-17-59-59",
99
- "recordingroom": "Kino"
100
- },
101
- "12": {
102
- "accent": "German",
103
- "age": "26",
104
- "gender": "female",
105
- "native speaker": "no",
106
- "origin": "Europe, Germany, Berlin",
107
- "recordingdate": "17-07-19-17-05-31",
108
- "recordingroom": "Kino"
109
- },
110
- "13": {
111
- "accent": "German",
112
- "age": "27",
113
- "gender": "male",
114
- "native speaker": "no",
115
- "origin": "Europe, Germany, Freiberg",
116
- "recordingdate": "17-07-19-17-47-06",
117
- "recordingroom": "Kino"
118
- },
119
- "14": {
120
- "accent": "Spanish",
121
- "age": "31",
122
- "gender": "male",
123
- "native speaker": "no",
124
- "origin": "Europe, Spain, Oviedo",
125
- "recordingdate": "17-07-24-18-08-13",
126
- "recordingroom": "Kino"
127
- },
128
- "15": {
129
- "accent": "Madras",
130
- "age": "28",
131
- "gender": "male",
132
- "native speaker": "no",
133
- "origin": "Europe, India, Chennai",
134
- "recordingdate": "17-07-24-19-06-38",
135
- "recordingroom": "Kino"
136
- },
137
- "16": {
138
- "accent": "German",
139
- "age": "30",
140
- "gender": "male",
141
- "native speaker": "no",
142
- "origin": "Europe, Germany, Muenchen",
143
- "recordingdate": "17-07-31-17-17-08",
144
- "recordingroom": "Kino"
145
- },
146
- "17": {
147
- "accent": "German",
148
- "age": "26",
149
- "gender": "male",
150
- "native speaker": "no",
151
- "origin": "Europe, Germany, Berlin",
152
- "recordingdate": "17-07-31-18-09-29",
153
- "recordingroom": "Kino"
154
- },
155
- "18": {
156
- "accent": "Levant",
157
- "age": "25",
158
- "gender": "male",
159
- "native speaker": "no",
160
- "origin": "Europe, Syria, Damascus",
161
- "recordingdate": "17-08-11-18-38-42",
162
- "recordingroom": "Kino"
163
- },
164
- "19": {
165
- "accent": "English",
166
- "age": "23",
167
- "gender": "male",
168
- "native speaker": "yes",
169
- "origin": "Europe, India, Delhi",
170
- "recordingdate": "17-08-11-19-12-12",
171
- "recordingroom": "Kino"
172
- },
173
- "20": {
174
- "accent": "German",
175
- "age": "25",
176
- "gender": "male",
177
- "native speaker": "no",
178
- "origin": "Europe, Germany, Berlin",
179
- "recordingdate": "17-08-14-17-27-02",
180
- "recordingroom": "Ruheraum"
181
- },
182
- "21": {
183
- "accent": "German",
184
- "age": "26",
185
- "gender": "male",
186
- "native speaker": "no",
187
- "origin": "Europe, Germany, Muenster",
188
- "recordingdate": "17-08-14-18-02-37",
189
- "recordingroom": "Ruheraum"
190
- },
191
- "22": {
192
- "accent": "German",
193
- "age": "33",
194
- "gender": "male",
195
- "native speaker": "no",
196
- "origin": "Europe, Germany, Braunschweig",
197
- "recordingdate": "17-08-15-13-38-24",
198
- "recordingroom": "Ruheraum"
199
- },
200
- "23": {
201
- "accent": "German",
202
- "age": "28",
203
- "gender": "male",
204
- "native speaker": "no",
205
- "origin": "Europe, Germany, Alsbach-Haehnlein",
206
- "recordingdate": "17-08-16-14-17-44",
207
- "recordingroom": "VR-Room"
208
- },
209
- "24": {
210
- "accent": "Chinese",
211
- "age": "26",
212
- "gender": "male",
213
- "native speaker": "no",
214
- "origin": "Asia, China, Nanning",
215
- "recordingdate": "17-08-16-15-37-02",
216
- "recordingroom": "VR-Room"
217
- },
218
- "25": {
219
- "accent": "Brasilian",
220
- "age": "22",
221
- "gender": "male",
222
- "native speaker": "no",
223
- "origin": "South-America, Brazil, Porto Alegre",
224
- "recordingdate": "17-08-16-16-01-05",
225
- "recordingroom": "VR-Room"
226
- },
227
- "26": {
228
- "accent": "Chinese",
229
- "age": "22",
230
- "gender": "female",
231
- "native speaker": "no",
232
- "origin": "Asia, China, Beijing",
233
- "recordingdate": "17-08-17-12-20-59",
234
- "recordingroom": "library"
235
- },
236
- "27": {
237
- "accent": "Italian",
238
- "age": "31",
239
- "gender": "male",
240
- "native speaker": "no",
241
- "origin": "Europe, Italy, Morbegno",
242
- "recordingdate": "17-08-17-12-50-32",
243
- "recordingroom": "library"
244
- },
245
- "28": {
246
- "accent": "German",
247
- "age": "28",
248
- "gender": "female",
249
- "native speaker": "no",
250
- "origin": "Europe, Germany, Hof",
251
- "recordingdate": "17-08-17-13-41-24",
252
- "recordingroom": "library"
253
- },
254
- "29": {
255
- "accent": "German",
256
- "age": "23",
257
- "gender": "male",
258
- "native speaker": "no",
259
- "origin": "Europe, Germany, Freiburg",
260
- "recordingdate": "17-09-14-20-54-30",
261
- "recordingroom": "vr-room"
262
- },
263
- "30": {
264
- "accent": "German",
265
- "age": "28",
266
- "gender": "male",
267
- "native speaker": "no",
268
- "origin": "Europe, Poland, Slubice",
269
- "recordingdate": "17-08-17-16-42-41",
270
- "recordingroom": "VR-Room"
271
- },
272
- "31": {
273
- "accent": "German",
274
- "age": "26",
275
- "gender": "male",
276
- "native speaker": "no",
277
- "origin": "Europe, Germany, Berlin",
278
- "recordingdate": "17-08-21-11-03-29",
279
- "recordingroom": "VR-room"
280
- },
281
- "32": {
282
- "accent": "Egyptian_American?",
283
- "age": "23",
284
- "gender": "male",
285
- "native speaker": "no",
286
- "origin": "Africa, Egypt, Alexandria",
287
- "recordingdate": "17-08-21-12-44-56",
288
- "recordingroom": "VR-room"
289
- },
290
- "33": {
291
- "accent": "German",
292
- "age": "26",
293
- "gender": "male",
294
- "native speaker": "no",
295
- "origin": "Europe, Germany, Hamburg",
296
- "recordingdate": "17-08-21-13-12-22",
297
- "recordingroom": "vr-room"
298
- },
299
- "34": {
300
- "accent": "German",
301
- "age": "25",
302
- "gender": "male",
303
- "native speaker": "no",
304
- "origin": "Europe, Germany, Munich",
305
- "recordingdate": "17-09-01-13-26-49",
306
- "recordingroom": "vr-room"
307
- },
308
- "35": {
309
- "accent": "Chinese",
310
- "age": "24",
311
- "gender": "male",
312
- "native speaker": "no",
313
- "origin": "Asia, China, Shanghai",
314
- "recordingdate": "17-08-21-15-03-12",
315
- "recordingroom": "vr-room"
316
- },
317
- "36": {
318
- "accent": "German",
319
- "age": "22",
320
- "gender": "female",
321
- "native speaker": "no",
322
- "origin": "Europe, Germany, Berlin",
323
- "recordingdate": "17-08-31-18-06-03",
324
- "recordingroom": "vr-room"
325
- },
326
- "37": {
327
- "accent": "Italian",
328
- "age": "27",
329
- "gender": "male",
330
- "native speaker": "no",
331
- "origin": "Europe, Italy, Casarsa",
332
- "recordingdate": "17-09-01-09-46-46",
333
- "recordingroom": "vr-room"
334
- },
335
- "38": {
336
- "accent": "Spanish",
337
- "age": "32",
338
- "gender": "male",
339
- "native speaker": "no",
340
- "origin": "Europe, Spain, Toledo",
341
- "recordingdate": "17-09-01-13-45-16",
342
- "recordingroom": "vr-room"
343
- },
344
- "39": {
345
- "accent": "German",
346
- "age": "29",
347
- "gender": "male",
348
- "native speaker": "no",
349
- "origin": "Europe, Germany, Berlin",
350
- "recordingdate": "17-09-01-14-13-15",
351
- "recordingroom": "vr-room"
352
- },
353
- "40": {
354
- "accent": "German",
355
- "age": "26",
356
- "gender": "male",
357
- "native speaker": "no",
358
- "origin": "Europe, Germany, Berlin",
359
- "recordingdate": "17-09-01-14-33-44",
360
- "recordingroom": "vr-room"
361
- },
362
- "41": {
363
- "accent": "South African",
364
- "age": "30",
365
- "gender": "male",
366
- "native speaker": "yes",
367
- "origin": "Africa, South Africa, Vryburg",
368
- "recordingdate": "17-09-01-14-56-32",
369
- "recordingroom": "vr-room"
370
- },
371
- "42": {
372
- "accent": "Arabic",
373
- "age": "29",
374
- "gender": "male",
375
- "native speaker": "no",
376
- "origin": "Europe, Syria, Damascus",
377
- "recordingdate": "17-09-01-15-23-24",
378
- "recordingroom": "vr-room"
379
- },
380
- "43": {
381
- "accent": "German",
382
- "age": "31",
383
- "gender": "female",
384
- "native speaker": "no",
385
- "origin": "Europe, Germany, Regensburg",
386
- "recordingdate": "17-09-01-16-59-50",
387
- "recordingroom": "vr-room"
388
- },
389
- "44": {
390
- "accent": "German",
391
- "age": "61",
392
- "gender": "male",
393
- "native speaker": "no",
394
- "origin": "Europe, Germany, Berlin",
395
- "recordingdate": "17-09-01-17-23-22",
396
- "recordingroom": "vr-room"
397
- },
398
- "45": {
399
- "accent": "German",
400
- "age": "0",
401
- "gender": "male",
402
- "native speaker": "no",
403
- "origin": "Europe, Germany, Stuttgart",
404
- "recordingdate": "17-09-11-12-07-04",
405
- "recordingroom": "vr-room"
406
- },
407
- "46": {
408
- "accent": "German",
409
- "age": "30",
410
- "gender": "male",
411
- "native speaker": "no",
412
- "origin": "Europe, Germany, Vechta",
413
- "recordingdate": "17-09-11-13-59-04",
414
- "recordingroom": "vr-room"
415
- },
416
- "47": {
417
- "accent": "Danish",
418
- "age": "23",
419
- "gender": "female",
420
- "native speaker": "no",
421
- "origin": "Europe, Denmark, Copenhagen",
422
- "recordingdate": "17-09-11-14-33-03",
423
- "recordingroom": "vr-room"
424
- },
425
- "48": {
426
- "accent": "German",
427
- "age": "26",
428
- "gender": "male",
429
- "native speaker": "no",
430
- "origin": "Europe, Germany, Berlin",
431
- "recordingdate": "17-09-11-15-05-58",
432
- "recordingroom": "vr-room"
433
- },
434
- "49": {
435
- "accent": "German",
436
- "age": "26",
437
- "gender": "male",
438
- "native speaker": "no",
439
- "origin": "Europe, Germany, Berlin",
440
- "recordingdate": "17-09-12-14-50-32",
441
- "recordingroom": "vr-room"
442
- },
443
- "50": {
444
- "accent": "German",
445
- "age": "24",
446
- "gender": "male",
447
- "native speaker": "no",
448
- "origin": "Europe, Germany, Flensburg",
449
- "recordingdate": "17-09-12-18-25-00",
450
- "recordingroom": "vr-room"
451
- },
452
- "51": {
453
- "accent": "German",
454
- "age": "26",
455
- "gender": "male",
456
- "native speaker": "no",
457
- "origin": "Europe, Germany, Bremen",
458
- "recordingdate": "17-09-13-09-33-15",
459
- "recordingroom": "vr-room"
460
- },
461
- "52": {
462
- "accent": "French",
463
- "age": "34",
464
- "gender": "female",
465
- "native speaker": "no",
466
- "origin": "Europe, France, Montpellier",
467
- "recordingdate": "17-09-13-10-32-26",
468
- "recordingroom": "vr-romm"
469
- },
470
- "53": {
471
- "accent": "German",
472
- "age": "24",
473
- "gender": "male",
474
- "native speaker": "no",
475
- "origin": "Europe, Germany, Reutlingen",
476
- "recordingdate": "17-09-13-10-58-47",
477
- "recordingroom": "vr-room"
478
- },
479
- "54": {
480
- "accent": "German",
481
- "age": "27",
482
- "gender": "male",
483
- "native speaker": "no",
484
- "origin": "Europe, Germany, Berlin",
485
- "recordingdate": "17-09-13-12-13-44",
486
- "recordingroom": "vr-room"
487
- },
488
- "55": {
489
- "accent": "German",
490
- "age": "23",
491
- "gender": "male",
492
- "native speaker": "no",
493
- "origin": "Europe, Germany, Dresden",
494
- "recordingdate": "17-09-13-12-35-54",
495
- "recordingroom": "vr-room"
496
- },
497
- "56": {
498
- "accent": "German",
499
- "age": "24",
500
- "gender": "female",
501
- "native speaker": "no",
502
- "origin": "Europe, Germany, Muenster",
503
- "recordingdate": "17-09-14-13-09-37",
504
- "recordingroom": "vr-room"
505
- },
506
- "57": {
507
- "accent": "German",
508
- "age": "27",
509
- "gender": "female",
510
- "native speaker": "no",
511
- "origin": "Europe, Germany, Berlin",
512
- "recordingdate": "17-09-15-13-21-33",
513
- "recordingroom": "vr-room"
514
- },
515
- "58": {
516
- "accent": "German",
517
- "age": "29",
518
- "gender": "female",
519
- "native speaker": "no",
520
- "origin": "Europe, Germany, Berlin",
521
- "recordingdate": "17-10-19-20-35-42",
522
- "recordingroom": "vr-room"
523
- },
524
- "59": {
525
- "accent": "German",
526
- "age": "31",
527
- "gender": "female",
528
- "native speaker": "no",
529
- "origin": "Europe, Germany, Berlin",
530
- "recordingdate": "17-10-19-21-03-53",
531
- "recordingroom": "vr-room"
532
- },
533
- "60": {
534
- "accent": "Tamil",
535
- "age": "27",
536
- "gender": "female",
537
- "native speaker": "yes",
538
- "origin": "Asia, India, Chennai",
539
- "recordingdate": "17-10-20-17-24-39",
540
- "recordingroom": "vr-room"
541
- }
542
- }