from local

This commit is contained in:
dohe0342 2022-12-27 15:47:17 +09:00
parent 8092dfd88b
commit 7b98729672
2 changed files with 8 additions and 8 deletions

View File

@ -399,21 +399,21 @@ class LibriSpeechAsrDataModule:
def train_clean_100_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_new.jsonl.gz"
self.args.manifest_dir / "librispeech_cuts_train-clean-100_new.jsonl"
)
@lru_cache()
def train_clean_360_cuts(self) -> CutSet:
logging.info("About to get train-clean-360 cuts")
return load_manifest_lazy(
self.args.manifest_dir / "librispeech_cuts_train-clean-360.jsonl.gz"
self.args.manifest_dir / "librispeech_cuts_train-clean-360_new.jsonl"
)
@lru_cache()
def train_other_500_cuts(self) -> CutSet:
logging.info("About to get train-other-500 cuts")
return load_manifest_lazy(
self.args.manifest_dir / "librispeech_cuts_train-other-500.jsonl.gz"
self.args.manifest_dir / "librispeech_cuts_train-other-500_new.jsonl"
)
@lru_cache()
@ -423,33 +423,33 @@ class LibriSpeechAsrDataModule:
train-clean-360 and train-other-500 cuts"
)
return load_manifest_lazy(
self.args.manifest_dir / "librispeech_cuts_train-all-shuf.jsonl.gz"
self.args.manifest_dir / "librispeech_cuts_train-all-shuf_new.jsonl"
)
@lru_cache()
def dev_clean_cuts(self) -> CutSet:
logging.info("About to get dev-clean cuts")
return load_manifest_lazy(
self.args.manifest_dir / "librispeech_cuts_dev-clean.jsonl.gz"
self.args.manifest_dir / "librispeech_cuts_dev-clean_new.jsonl"
)
@lru_cache()
def dev_other_cuts(self) -> CutSet:
logging.info("About to get dev-other cuts")
return load_manifest_lazy(
self.args.manifest_dir / "librispeech_cuts_dev-other.jsonl.gz"
self.args.manifest_dir / "librispeech_cuts_dev-other_new.jsonl"
)
@lru_cache()
def test_clean_cuts(self) -> CutSet:
logging.info("About to get test-clean cuts")
return load_manifest_lazy(
self.args.manifest_dir / "librispeech_cuts_test-clean.jsonl.gz"
self.args.manifest_dir / "librispeech_cuts_test-clean_new.jsonl"
)
@lru_cache()
def test_other_cuts(self) -> CutSet:
logging.info("About to get test-other cuts")
return load_manifest_lazy(
self.args.manifest_dir / "librispeech_cuts_test-other.jsonl.gz"
self.args.manifest_dir / "librispeech_cuts_test-other_new.jsonl"
)