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
4a7487e04c
commit
90c1c96bf2
Binary file not shown.
@ -398,9 +398,15 @@ class LibriSpeechAsrDataModule:
|
|||||||
@lru_cache()
|
@lru_cache()
|
||||||
def train_clean_100_cuts(self, option=None) -> CutSet:
|
def train_clean_100_cuts(self, option=None) -> CutSet:
|
||||||
logging.info("About to get train-clean-100 cuts")
|
logging.info("About to get train-clean-100 cuts")
|
||||||
return load_manifest_lazy(
|
if option is None
|
||||||
self.args.manifest_dir / f"librispeech_cuts_train-clean-100_{option}.jsonl"
|
return load_manifest_lazy(
|
||||||
)
|
self.args.manifest_dir / f"librispeech_cuts_train-clean-100.jsonl"
|
||||||
|
)
|
||||||
|
else:
|
||||||
|
return load_manifest_lazy(
|
||||||
|
self.args.manifest_dir / f"librispeech_cuts_train-clean-100_{option}.jsonl"
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
@lru_cache()
|
@lru_cache()
|
||||||
def train_clean_360_cuts(self, option=None) -> CutSet:
|
def train_clean_360_cuts(self, option=None) -> CutSet:
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user