From 1b978426040c836059cd0b941648e8515805b389 Mon Sep 17 00:00:00 2001
From: 北念 <lzr265946@alibaba-inc.com>
Date: 星期二, 23 七月 2024 11:45:43 +0800
Subject: [PATCH] add sensevoice scp2jsonl
---
runtime/python/onnxruntime/funasr_onnx/sensevoice_bin.py | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/runtime/python/onnxruntime/funasr_onnx/sensevoice_bin.py b/runtime/python/onnxruntime/funasr_onnx/sensevoice_bin.py
index 7d6f341..433acd1 100644
--- a/runtime/python/onnxruntime/funasr_onnx/sensevoice_bin.py
+++ b/runtime/python/onnxruntime/funasr_onnx/sensevoice_bin.py
@@ -107,8 +107,8 @@
ctc_logits, encoder_out_lens = self.infer(
feats,
feats_len,
- np.array(language, dtype=np.int32),
- np.array(textnorm, dtype=np.int32),
+ np.array([language], dtype=np.int32),
+ np.array([textnorm], dtype=np.int32),
)
# back to torch.Tensor
ctc_logits = torch.from_numpy(ctc_logits).float()
@@ -120,7 +120,7 @@
mask = yseq != self.blank_id
token_int = yseq[mask].tolist()
- asr_res.append(self.tokenizer.encode(token_int))
+ asr_res.append(self.tokenizer.decode(token_int))
return asr_res
--
Gitblit v1.9.1