diff --git a/egs/librispeech/ASR/conformer_ctc2/.decode.py.swp b/egs/librispeech/ASR/conformer_ctc2/.decode.py.swp new file mode 100644 index 000000000..92d30c529 Binary files /dev/null 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 3b28687d7..2a0f092bc 100755 --- a/egs/librispeech/ASR/conformer_ctc2/decode.py +++ b/egs/librispeech/ASR/conformer_ctc2/decode.py @@ -873,6 +873,7 @@ def main() -> None: args.return_cuts = True librispeech = LibriSpeechAsrDataModule(args) + ''' dev_clean_cuts = librispeech.dev_clean_cuts() dev_other_cuts = librispeech.dev_other_cuts() test_clean_cuts = librispeech.test_clean_cuts() @@ -885,6 +886,14 @@ def main() -> None: test_sets = ["dev-clean", "dev-other", "test-clean", "test-other"] test_dls = [dev_clean_dl, dev_other_dl, test_clean_dl, test_other_dl] + ''' + + test_clean_cuts = librispeech.test_clean_cuts() + + test_clean_dl = librispeech.test_dataloaders(test_clean_cuts) + + test_sets = ["test-clean"] + test_dls = [test_clean_dl] for test_set, test_dl in zip(test_sets, test_dls): results_dict = decode_dataset(