From 1210025d8b625e13a2b7c6e0e26405f7d52e302a Mon Sep 17 00:00:00 2001 From: Your Name Date: Tue, 29 Apr 2025 20:34:12 -0700 Subject: [PATCH] fix flake8 --- egs/speech_llm/ASR_LLM/whisper_llm_zh/decode.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/egs/speech_llm/ASR_LLM/whisper_llm_zh/decode.py b/egs/speech_llm/ASR_LLM/whisper_llm_zh/decode.py index e5e48d09c..3036b471e 100755 --- a/egs/speech_llm/ASR_LLM/whisper_llm_zh/decode.py +++ b/egs/speech_llm/ASR_LLM/whisper_llm_zh/decode.py @@ -383,7 +383,7 @@ def decode_dataset( this_batch = [] assert len(hyps) == len(texts) for cut_id, hyp_text, ref_text in zip(cut_ids, hyps, texts): - this_batch.append((cut_id, ref_text, hyp_words)) + this_batch.append((cut_id, ref_text, hyp_text)) results[lm_scale].extend(this_batch)