diff --git a/egs/librispeech/ASR/conformer_ctc2/.decode.py.swp b/egs/librispeech/ASR/conformer_ctc2/.decode.py.swp index 62a5a49d8..f76b25a8b 100644 Binary files a/egs/librispeech/ASR/conformer_ctc2/.decode.py.swp and b/egs/librispeech/ASR/conformer_ctc2/.decode.py.swp differ diff --git a/egs/librispeech/ASR/conformer_ctc2/decode.py b/egs/librispeech/ASR/conformer_ctc2/decode.py index 86b9604fd..adb046995 100755 --- a/egs/librispeech/ASR/conformer_ctc2/decode.py +++ b/egs/librispeech/ASR/conformer_ctc2/decode.py @@ -876,12 +876,14 @@ def main() -> None: dev_ohter_cuts = librispeech.dev_other_cuts() test_clean_cuts = librispeech.test_clean_cuts() test_other_cuts = librispeech.test_other_cuts() - + + dev_clean_dl = librispeech.dev_dataloaders(dev_clean_cuts) + dev_other_dl = librispeech.dev_dataloaders(dev_other_cuts) test_clean_dl = librispeech.test_dataloaders(test_clean_cuts) test_other_dl = librispeech.test_dataloaders(test_other_cuts) - test_sets = ["test-clean", "test-other"] - test_dls = [test_clean_dl, test_other_dl] + test_sets = ["dev-clean", "dev-other", "test-clean", "test-other"] + test_dls = [dev_clean_dl, dev_other_dl, test_clean_dl, test_other_dl] for test_set, test_dl in zip(test_sets, test_dls): results_dict = decode_dataset(