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 41e7a6d3a..110dc1041 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 619e6d489..57045038f 100755 --- a/egs/tedlium3/ASR/pruned_transducer_stateless_d2v_v2/decode.py +++ b/egs/tedlium3/ASR/pruned_transducer_stateless_d2v_v2/decode.py @@ -444,7 +444,6 @@ def decode_one_batch( encoder_out_lens=encoder_out_lens, ) for hyp in sp.decode(hyp_tokens): - print(hyp) hyps.append(hyp.split()) elif params.decoding_method == "modified_beam_search": hyp_tokens = modified_beam_search( @@ -555,7 +554,9 @@ def decode_dataset( word_table=word_table, batch=batch, ) - + + print(hyps_dict) + exit() for name, hyps in hyps_dict.items(): this_batch = [] assert len(hyps) == len(texts)