from local

This commit is contained in:
dohe0342 2023-01-13 17:24:40 +09:00
parent 6e609b4dfb
commit cc5809ce5b
2 changed files with 7 additions and 0 deletions

View File

@ -393,6 +393,13 @@ class LibriSpeechAsrDataModule:
) )
return test_dl return test_dl
@lru_cache()
def train_clean_10_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() @lru_cache()
def train_clean_100_cuts(self) -> CutSet: def train_clean_100_cuts(self) -> CutSet:
logging.info("About to get train-clean-100 cuts") logging.info("About to get train-clean-100 cuts")