from local

This commit is contained in:
dohe0342 2023-01-03 13:05:55 +09:00
parent 9fb9716a78
commit 1507400f39
2 changed files with 6 additions and 0 deletions

View File

@ -484,6 +484,12 @@ class LibriSpeechAsrDataModule:
spk_list = [json.split('/')[-1][:-6] for json in json_list]
return [load_manifest_lazy(json) for json in json_list], spk_list
else:
return load_manifest_lazy(
self.args.manifest_dir / f"librispeech_cuts_test-clean_{option}.jsonl"
)
@lru_cache()