From 711859c21fda7d0bd66e5e7706b92a064f911d67 Mon Sep 17 00:00:00 2001 From: marcoyang Date: Thu, 28 Mar 2024 16:14:44 +0800 Subject: [PATCH] fix typo --- egs/librispeech/ASR/zipformer/decode.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/egs/librispeech/ASR/zipformer/decode.py b/egs/librispeech/ASR/zipformer/decode.py index 339e253e6..5f18de9e8 100755 --- a/egs/librispeech/ASR/zipformer/decode.py +++ b/egs/librispeech/ASR/zipformer/decode.py @@ -1023,9 +1023,9 @@ def main(): test_other_dl = librispeech.test_dataloaders(test_other_cuts) test_sets = ["test-clean", "test-other"] - test_dl = [test_clean_dl, test_other_dl] + test_dls = [test_clean_dl, test_other_dl] - for test_set, test_dl in zip(test_sets, test_dl): + for test_set, test_dl in zip(test_sets, test_dls): results_dict = decode_dataset( dl=test_dl, params=params,