From 1e26a73786bfafcf353ec9cf14659cc398f4ecb9 Mon Sep 17 00:00:00 2001 From: dohe0342 Date: Fri, 17 Feb 2023 10:35:41 +0900 Subject: [PATCH] from local --- .../ASR/conformer_ctc2/.decode.py.swp | Bin 53248 -> 53248 bytes egs/librispeech/ASR/conformer_ctc2/decode.py | 8 +++++--- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/egs/librispeech/ASR/conformer_ctc2/.decode.py.swp b/egs/librispeech/ASR/conformer_ctc2/.decode.py.swp index 62a5a49d87f68d9508219fc7c4cae821120faf27..f76b25a8bd31501994b8daac927c2b6c0f67df90 100644 GIT binary patch delta 438 zcmZwBJxjw-6b9fE6I(wh7?4syYA6UT)HVnm5^%4BgJ@k#nnW6jsU&HOh}a@H=@i@? z>JKQQ0ma?H%~|TGgCDqbbn#6hx_IG%``&xcxu?@(J3Tg86E~Ju1gRhr))djl0+vovDz9i1zXd!%%$qShvg!c&ElXM;r zI^xh{JU(PV$+{=R&8 F`VH=>Z14a8 delta 249 zcmZozz}&EaSuDvQ%+puFQqO<^2m}}yLT|oHo^orWn3W)7@a90l&2qdVEDQ`atPt7Y z$$|#!>ub3f7_5Q#Cnp2L4t;q4NtVg>+gLZBFwte1ENE#kIofi;=31-fsQ`huFXaFL 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(