from local

This commit is contained in:
dohe0342 2023-02-14 00:44:15 +09:00
parent 17b81ce7d6
commit 02f53f5073
2 changed files with 7 additions and 0 deletions

View File

@ -392,6 +392,13 @@ class TedAsrDataModule:
num_workers=self.args.num_workers,
)
return test_dl
@lru_cache()
def train_cuts(self) -> CutSet:
logging.info("About to get train-clean-100 cuts")
return load_manifest_lazy(
self.args.manifest_dir / "librispeech_cuts_train-clean-100.jsonl.gz"
)
@lru_cache()
def train_clean_100_cuts(self) -> CutSet: