From 9c9b23447b1a8131ad42fa61d8368c27cb326789 Mon Sep 17 00:00:00 2001 From: JinZr <60612200+JinZr@users.noreply.github.com> Date: Thu, 11 Jan 2024 09:55:54 +0800 Subject: [PATCH] minor fixes --- egs/aishell/ASR/zipformer_bbpe/decode.py | 1 - 1 file changed, 1 deletion(-) diff --git a/egs/aishell/ASR/zipformer_bbpe/decode.py b/egs/aishell/ASR/zipformer_bbpe/decode.py index 366a215a7..475fa9489 100755 --- a/egs/aishell/ASR/zipformer_bbpe/decode.py +++ b/egs/aishell/ASR/zipformer_bbpe/decode.py @@ -551,7 +551,6 @@ def decode_dataset( assert len(hyps) == len(texts) for cut_id, hyp_words, ref_text in zip(cut_ids, hyps, texts): ref_words = "".join(ref_text.split()) - hyp_words = "".join(hyp_words) this_batch.append((cut_id, ref_words, hyp_words))