diff --git a/egs/tedlium3/ASR/.test.sh.swp b/egs/tedlium3/ASR/.test.sh.swp index 4e6ab7b67..8404611d4 100644 Binary files a/egs/tedlium3/ASR/.test.sh.swp and b/egs/tedlium3/ASR/.test.sh.swp differ diff --git a/egs/tedlium3/ASR/pruned_transducer_stateless_d2v_v2/.decode.py.swp b/egs/tedlium3/ASR/pruned_transducer_stateless_d2v_v2/.decode.py.swp index 0b55dfdbc..eaa627a0a 100644 Binary files a/egs/tedlium3/ASR/pruned_transducer_stateless_d2v_v2/.decode.py.swp and b/egs/tedlium3/ASR/pruned_transducer_stateless_d2v_v2/.decode.py.swp differ diff --git a/egs/tedlium3/ASR/pruned_transducer_stateless_d2v_v2/decode.py b/egs/tedlium3/ASR/pruned_transducer_stateless_d2v_v2/decode.py index 162341f15..a9ed0bf23 100755 --- a/egs/tedlium3/ASR/pruned_transducer_stateless_d2v_v2/decode.py +++ b/egs/tedlium3/ASR/pruned_transducer_stateless_d2v_v2/decode.py @@ -821,14 +821,16 @@ def main(): # we need cut ids to display recognition results. args.return_cuts = True tedlium = TedLiumAsrDataModule(args) - valid_cuts = tedlium.dev_cuts() + #valid_cuts = tedlium.dev_cuts() test_cuts = tedlium.test_cuts() - valid_dl = tedlium.test_dataloaders(valid_cuts) + #valid_dl = tedlium.test_dataloaders(valid_cuts) test_dl = tedlium.test_dataloaders(test_cuts) - test_sets = ['dev', 'test'] - test_dl = [valid_dl, test_dl] - + #test_sets = ['dev', 'test'] + #test_dl = [valid_dl, test_dl] + test_sets = ['test'] + test_dl = [test_dl] + for test_set, test_dl in zip(test_sets, test_dl): results_dict = decode_dataset( dl=test_dl,