diff --git a/egs/librispeech/ASR/pruned_transducer_stateless_d2v_v2/.asr_datamodule.py.swp b/egs/librispeech/ASR/pruned_transducer_stateless_d2v_v2/.asr_datamodule.py.swp new file mode 100644 index 000000000..9c22e6abb Binary files /dev/null and b/egs/librispeech/ASR/pruned_transducer_stateless_d2v_v2/.asr_datamodule.py.swp differ diff --git a/egs/librispeech/ASR/pruned_transducer_stateless_d2v_v2/asr_datamodule.py b/egs/librispeech/ASR/pruned_transducer_stateless_d2v_v2/asr_datamodule.py index d8a1a867a..5eded7717 100644 --- a/egs/librispeech/ASR/pruned_transducer_stateless_d2v_v2/asr_datamodule.py +++ b/egs/librispeech/ASR/pruned_transducer_stateless_d2v_v2/asr_datamodule.py @@ -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()