diff --git a/egs/librispeech/ASR/.test.sh.swp b/egs/librispeech/ASR/.test.sh.swp index f8f969f19..e686985f8 100644 Binary files a/egs/librispeech/ASR/.test.sh.swp and b/egs/librispeech/ASR/.test.sh.swp differ 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 index 42e598bb0..5d71477df 100644 Binary files a/egs/librispeech/ASR/pruned_transducer_stateless_d2v_v2/.asr_datamodule.py.swp 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 eba853861..d4f46d8e3 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 @@ -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" )