diff --git a/egs/librispeech/ASR/tdnn_lstm_ctc/.asr_datamodule.py.swp b/egs/librispeech/ASR/tdnn_lstm_ctc/.asr_datamodule.py.swp index 6e3555d44..3821b1a13 100644 Binary files a/egs/librispeech/ASR/tdnn_lstm_ctc/.asr_datamodule.py.swp and b/egs/librispeech/ASR/tdnn_lstm_ctc/.asr_datamodule.py.swp differ diff --git a/egs/librispeech/ASR/tdnn_lstm_ctc/asr_datamodule.py b/egs/librispeech/ASR/tdnn_lstm_ctc/asr_datamodule.py index c5787835d..cabe4dc48 100644 --- a/egs/librispeech/ASR/tdnn_lstm_ctc/asr_datamodule.py +++ b/egs/librispeech/ASR/tdnn_lstm_ctc/asr_datamodule.py @@ -397,21 +397,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.jsonl.gz" + self.args.manifest_dir / "librispeech_cuts_train-clean-100.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.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.jsonl" ) @lru_cache() @@ -421,33 +421,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.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.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.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.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.jsonl" )