Update ESLO.py
Browse files
ESLO.py
CHANGED
@@ -26,7 +26,7 @@ _DESCRIPTION = """\
|
|
26 |
ESLO dataset, each utterance are taken out individually
|
27 |
"""
|
28 |
SAMPLING_RATE = 16000
|
29 |
-
AUDIO_FOLDER = "
|
30 |
AUDIO_FILES = ['ESLO2_ITI_1073.mp4', 'ESLO1_ENT_117.mp4', 'ESLO1_ENT_103.mp4', 'ESLO2_ITI_1098.mp4',
|
31 |
'ESLO1_ENTCONT_237.mp4', 'ESLO1_ENTCONT_223.mp4', 'ESLO2_RUMEUR_1339.mp4', 'ESLO2_INTPERS_1245.mp4',
|
32 |
'ESLO1_TEL_364.mp4', 'ESLO2_ITI_1107.mp4', 'ESLO1_CONF_503.mp4', 'ESLO1_MAG_631.mp4',
|
@@ -263,8 +263,8 @@ class MultilingualLibrispeech(datasets.GeneratorBasedBuilder):
|
|
263 |
def _split_generators(self, dl_manager):
|
264 |
|
265 |
transcripts = dl_manager.download({
|
266 |
-
"train": "
|
267 |
-
"test": "
|
268 |
})
|
269 |
audio_files = dl_manager.download(
|
270 |
{audio_file: os.path.join(AUDIO_FOLDER, audio_file) for audio_file in AUDIO_FILES})
|
|
|
26 |
ESLO dataset, each utterance are taken out individually
|
27 |
"""
|
28 |
SAMPLING_RATE = 16000
|
29 |
+
AUDIO_FOLDER = "audio"
|
30 |
AUDIO_FILES = ['ESLO2_ITI_1073.mp4', 'ESLO1_ENT_117.mp4', 'ESLO1_ENT_103.mp4', 'ESLO2_ITI_1098.mp4',
|
31 |
'ESLO1_ENTCONT_237.mp4', 'ESLO1_ENTCONT_223.mp4', 'ESLO2_RUMEUR_1339.mp4', 'ESLO2_INTPERS_1245.mp4',
|
32 |
'ESLO1_TEL_364.mp4', 'ESLO2_ITI_1107.mp4', 'ESLO1_CONF_503.mp4', 'ESLO1_MAG_631.mp4',
|
|
|
263 |
def _split_generators(self, dl_manager):
|
264 |
|
265 |
transcripts = dl_manager.download({
|
266 |
+
"train": "transcripts_deduplicated_train.zip",
|
267 |
+
"test": "transcripts_deduplicated_test.zip",
|
268 |
})
|
269 |
audio_files = dl_manager.download(
|
270 |
{audio_file: os.path.join(AUDIO_FOLDER, audio_file) for audio_file in AUDIO_FILES})
|