From fb3927585fd8cc69e7c20326afa318d89e9c8933 Mon Sep 17 00:00:00 2001 From: dohe0342 Date: Wed, 28 Dec 2022 10:29:19 +0900 Subject: [PATCH] from local --- .../.asr_datamodule.py.swp | Bin 28672 -> 32768 bytes .../asr_datamodule.py | 56 ++++++++++++++++++ 2 files changed, 56 insertions(+) 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 9c22e6abb7de746fb6c5b18793a36fe9bb10e423..63b7f483dd44802cfb4331286aa07e112c331a95 100644 GIT binary patch delta 470 zcmY+=KS%;`6bJD4JO4$cUKUz9B-~P&VN0i1Ee=9-K~T8Lr8gBBMI%RJ+I!^)*!ezTB(JMAwnE!MWJpjWR zC@=v1;DHwx(J^eo1dKuq!ccb--M|iHUhL6 delta 94 zcmZo@U}|{4D3)Xp=IN_osb|0d1Of~UZL?P=-(S8_>ttquUPkB169vRKpAfL% upZGvwlLCtX?;} CutSet: + logging.info("About to get dev-clean cuts") + return load_manifest_lazy( + self.args.manifest_dir / "librispeech_cuts_dev-clean_male.jsonl" + ) + + @lru_cache() + def dev_other_cuts_male(self) -> CutSet: + logging.info("About to get dev-other cuts") + return load_manifest_lazy( + self.args.manifest_dir / "librispeech_cuts_dev-other_male.jsonl" + ) + + @lru_cache() + def test_clean_cuts_male(self) -> CutSet: + logging.info("About to get test-clean cuts") + return load_manifest_lazy( + self.args.manifest_dir / "librispeech_cuts_test-clean_male.jsonl" + ) + + @lru_cache() + def test_other_cuts_male(self) -> CutSet: + logging.info("About to get test-other cuts") + return load_manifest_lazy( + self.args.manifest_dir / "librispeech_cuts_test-other_male.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_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_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_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_new.jsonl" + )