from local

This commit is contained in:
dohe0342 2022-12-28 10:34:19 +09:00
parent d11ff4406f
commit 2d6589f045
2 changed files with 4 additions and 0 deletions

View File

@ -406,6 +406,10 @@ class LibriSpeechAsrDataModule:
return load_manifest_lazy( return load_manifest_lazy(
self.args.manifest_dir / "librispeech_cuts_train-clean-100_male.jsonl" self.args.manifest_dir / "librispeech_cuts_train-clean-100_male.jsonl"
) )
elif option == 'female':
return load_manifest_lazy(
self.args.manifest_dir / "librispeech_cuts_train-clean-100_female.jsonl"
)
@lru_cache() @lru_cache()
def train_clean_360_cuts(self) -> CutSet: def train_clean_360_cuts(self) -> CutSet: