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
7eeff6f8c1
commit
1c06deb92d
Binary file not shown.
@ -398,9 +398,14 @@ class LibriSpeechAsrDataModule:
|
||||
@lru_cache()
|
||||
def train_clean_100_cuts(self, option=None) -> CutSet:
|
||||
logging.info("About to get train-clean-100 cuts")
|
||||
return load_manifest_lazy(
|
||||
self.args.manifest_dir / "librispeech_cuts_train-clean-100_new.jsonl"
|
||||
)
|
||||
if option is None:
|
||||
return load_manifest_lazy(
|
||||
self.args.manifest_dir / "librispeech_cuts_train-clean-100_new.jsonl"
|
||||
)
|
||||
elif option == 'male'
|
||||
return load_manifest_lazy(
|
||||
self.args.manifest_dir / "librispeech_cuts_train-clean-100_male.jsonl"
|
||||
)
|
||||
|
||||
@lru_cache()
|
||||
def train_clean_360_cuts(self) -> CutSet:
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user