from local

This commit is contained in:
dohe0342 2023-01-27 17:34:34 +09:00
parent 3996f90229
commit 419ce79508
2 changed files with 7 additions and 0 deletions

View File

@ -530,3 +530,10 @@ class LibriSpeechAsrDataModule:
return load_manifest_lazy(
self.args.manifest_dir / f"userlibri/test-other_sampling/{option}.jsonl"
)
@lru_cache()
def vox_cuts(self, option=None) -> CutSet:
logging.info("About to get test-other user cuts")
return load_manifest_lazy(
self.args.manifest_dir / f"userlibri/test-other_sampling/{option}.jsonl"
)