from local

This commit is contained in:
dohe0342 2022-12-28 10:28:03 +09:00
parent 492d3831ce
commit c71c02f94a
2 changed files with 11 additions and 1 deletions

View File

@ -433,7 +433,17 @@ class LibriSpeechAsrDataModule:
train-clean-360 and train-other-500 cuts"
)
return load_manifest_lazy(
self.args.manifest_dir / "librispeech_cuts_train-all-shuf_new.jsonl"
self.args.manifest_dir / "librispeech_cuts_train-all-shuf_male.jsonl"
)
@lru_cache()
def train_all_shuf_cuts_female(self) -> CutSet:
logging.info(
"About to get the shuffled train-clean-100, \
train-clean-360 and train-other-500 cuts"
)
return load_manifest_lazy(
self.args.manifest_dir / "librispeech_cuts_train-all-shuf_female.jsonl"
)
@lru_cache()