from local

This commit is contained in:
dohe0342 2023-01-25 15:15:58 +09:00
parent fed744f54a
commit 3f4ad36047
3 changed files with 2 additions and 2 deletions

Binary file not shown.

View File

@ -521,12 +521,12 @@ class LibriSpeechAsrDataModule:
def test_clean_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"
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-other user cuts")
return load_manifest_lazy(
self.args.manifest_dir / f"/userlibri/test-other_sampling/{option}.jsonl"
self.args.manifest_dir / f"userlibri/test-other_sampling/{option}.jsonl"
)