from local

This commit is contained in:
dohe0342 2023-01-25 15:10:24 +09:00
parent 914b5ec18c
commit 4a2cdcdba2
2 changed files with 7 additions and 0 deletions

View File

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