mirror of
https://github.com/k2-fsa/icefall.git
synced 2025-12-11 06:55:27 +00:00
from local
This commit is contained in:
parent
4cc159564d
commit
47bc350752
Binary file not shown.
Binary file not shown.
@ -426,26 +426,6 @@ class LibriSpeechAsrDataModule:
|
||||
self.args.manifest_dir / "librispeech_cuts_train-all-shuf_new.jsonl"
|
||||
)
|
||||
|
||||
@lru_cache()
|
||||
def train_all_shuf_cuts_male(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_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()
|
||||
def dev_clean_cuts(self) -> CutSet:
|
||||
logging.info("About to get dev-clean cuts")
|
||||
@ -473,59 +453,3 @@ class LibriSpeechAsrDataModule:
|
||||
return load_manifest_lazy(
|
||||
self.args.manifest_dir / "librispeech_cuts_test-other_new.jsonl"
|
||||
)
|
||||
|
||||
@lru_cache()
|
||||
def dev_clean_cuts_male(self) -> 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_female(self) -> CutSet:
|
||||
logging.info("About to get dev-clean cuts")
|
||||
return load_manifest_lazy(
|
||||
self.args.manifest_dir / "librispeech_cuts_dev-clean_female.jsonl"
|
||||
)
|
||||
|
||||
@lru_cache()
|
||||
def dev_other_cuts_female(self) -> CutSet:
|
||||
logging.info("About to get dev-other cuts")
|
||||
return load_manifest_lazy(
|
||||
self.args.manifest_dir / "librispeech_cuts_dev-other_female.jsonl"
|
||||
)
|
||||
|
||||
@lru_cache()
|
||||
def test_clean_cuts_female(self) -> CutSet:
|
||||
logging.info("About to get test-clean cuts")
|
||||
return load_manifest_lazy(
|
||||
self.args.manifest_dir / "librispeech_cuts_test-clean_female.jsonl"
|
||||
)
|
||||
|
||||
@lru_cache()
|
||||
def test_other_cuts_female(self) -> CutSet:
|
||||
logging.info("About to get test-other cuts")
|
||||
return load_manifest_lazy(
|
||||
self.args.manifest_dir / "librispeech_cuts_test-other_female.jsonl"
|
||||
)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user