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
d5bda9557d
commit
02c2d12135
Binary file not shown.
@ -462,9 +462,15 @@ class LibriSpeechAsrDataModule:
|
||||
@lru_cache()
|
||||
def dev_other_cuts(self, option=None) -> CutSet:
|
||||
logging.info("About to get dev-other cuts")
|
||||
return load_manifest_lazy(
|
||||
self.args.manifest_dir / f"librispeech_cuts_dev-other_{option}.jsonl"
|
||||
)
|
||||
if option is None:
|
||||
return load_manifest_lazy(
|
||||
self.args.manifest_dir / f"librispeech_cuts_dev-other.jsonl"
|
||||
)
|
||||
else:
|
||||
return load_manifest_lazy(
|
||||
self.args.manifest_dir / f"librispeech_cuts_dev-other_{option}.jsonl"
|
||||
)
|
||||
|
||||
|
||||
@lru_cache()
|
||||
def test_clean_cuts(self, option=None) -> CutSet:
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user