minor updates

This commit is contained in:
JinZr 2023-09-28 10:25:31 +08:00
parent 2f1c36013d
commit 40f241b8d6

View File

@ -100,11 +100,16 @@ class MultiDataset:
test_clean_cuts = self.test_clean_cuts()
test_other_cuts = self.test_other_cuts()
tal_csasr_cuts = load_manifest_lazy(
self.fbank_dir / "tal_csasr_cuts_test_set.jsonl.gz"
)
return {
"aishell-2_test": aishell2_test_cuts,
"aishell-2_dev": aishell2_dev_cuts,
"librispeech_test_clean": test_clean_cuts,
"librispeech_test_other": test_other_cuts,
"tal_csasr_cuts_test": tal_csasr_cuts,
}
@lru_cache()