kmn1024
2025-06-25 443bc09c11f3cf89ffc573aab2021f0c933aa5b3
runtime/python/onnxruntime/demo_seaco_paraformer.py
@@ -4,9 +4,9 @@
model_dir = "iic/speech_seaco_paraformer_large_asr_nat-zh-cn-16k-common-vocab8404-pytorch"
model = SeacoParaformer(model_dir, batch_size=1)
wav_path = ['{}/.cache/modelscope/hub/{}/example/asr_example.wav'.format(Path.home(), model_dir)]
wav_path = ["{}/.cache/modelscope/hub/{}/example/asr_example.wav".format(Path.home(), model_dir)]
hotwords = '你的热词 魔搭'
hotwords = "你的热词 魔搭"
result = model(wav_path, hotwords)
print(result)