mirror of
https://github.com/modelscope/FunASR
synced 2025-09-15 14:48:36 +08:00
20 lines
652 B
Python
20 lines
652 B
Python
#!/usr/bin/env python3
|
|
# -*- encoding: utf-8 -*-
|
|
# Copyright FunASR (https://github.com/FunAudioLLM/SenseVoice). All Rights Reserved.
|
|
# MIT License (https://opensource.org/licenses/MIT)
|
|
|
|
from pathlib import Path
|
|
from funasr_onnx import SenseVoiceSmall
|
|
from funasr_onnx.utils.postprocess_utils import rich_transcription_postprocess
|
|
|
|
|
|
model_dir = "iic/SenseVoiceSmall"
|
|
|
|
model = SenseVoiceSmall(model_dir, batch_size=10, quantize=False)
|
|
|
|
# inference
|
|
wav_or_scp = ["{}/.cache/modelscope/hub/{}/example/en.mp3".format(Path.home(), model_dir)]
|
|
|
|
res = model(wav_or_scp, language="auto", use_itn=True)
|
|
print([rich_transcription_postprocess(i) for i in res])
|