Merge branch 'dev/aishell-zipformer-bbpe' of https://github.com/jinzr/icefall into dev/aishell-zipformer-bbpe

This commit is contained in:
JinZr 2024-01-11 09:51:06 +08:00
commit 07899ee85a

View File

@ -550,7 +550,9 @@ def decode_dataset(
this_batch = []
assert len(hyps) == len(texts)
for cut_id, hyp_words, ref_text in zip(cut_ids, hyps, texts):
ref_words = ref_text.split()
ref_words = "".join(ref_text.split())
hyp_words = "".join(hyp_words)
this_batch.append((cut_id, ref_words, hyp_words))
results[name].extend(this_batch)