[WIP] Fix streaming mode
Browse files
multilingual_librispeech.py
CHANGED
|
@@ -147,7 +147,7 @@ class MultilingualLibrispeech(datasets.GeneratorBasedBuilder):
|
|
| 147 |
"transcript_path": transcripts["train"],
|
| 148 |
"audio_archives": [dl_manager.iter_archive(archive) for archive in audio_archives["train"]],
|
| 149 |
"local_extracted_archive": local_extracted_archives.get("train"),
|
| 150 |
-
"limited_ids_paths": limited_supervision_9h,
|
| 151 |
},
|
| 152 |
),
|
| 153 |
datasets.SplitGenerator(
|
|
@@ -156,7 +156,7 @@ class MultilingualLibrispeech(datasets.GeneratorBasedBuilder):
|
|
| 156 |
"transcript_path": transcripts["train"],
|
| 157 |
"audio_archives": [dl_manager.iter_archive(archive) for archive in audio_archives["train"]],
|
| 158 |
"local_extracted_archive": local_extracted_archives.get("train"),
|
| 159 |
-
"limited_ids_paths": limited_supervision_1h,
|
| 160 |
},
|
| 161 |
),
|
| 162 |
]
|
|
|
|
| 147 |
"transcript_path": transcripts["train"],
|
| 148 |
"audio_archives": [dl_manager.iter_archive(archive) for archive in audio_archives["train"]],
|
| 149 |
"local_extracted_archive": local_extracted_archives.get("train"),
|
| 150 |
+
"limited_ids_paths": (limited_supervision_9h,),
|
| 151 |
},
|
| 152 |
),
|
| 153 |
datasets.SplitGenerator(
|
|
|
|
| 156 |
"transcript_path": transcripts["train"],
|
| 157 |
"audio_archives": [dl_manager.iter_archive(archive) for archive in audio_archives["train"]],
|
| 158 |
"local_extracted_archive": local_extracted_archives.get("train"),
|
| 159 |
+
"limited_ids_paths": (limited_supervision_1h,),
|
| 160 |
},
|
| 161 |
),
|
| 162 |
]
|