STT/ASR - onnx
Collection
OVOS STT/ASR models for onnx-asr (ONNX runtime). Most ship fp32 + int8 (set quantization: int8 for faster/smaller CPU inference). • 234 items • Updated • 2
ONNX export of misterkissi/whisper-small-lomwe, a Lomwe whisper-small ASR model fine-tuned by Emmanuel Kissi on top of openai/whisper-small, for use with onnx-asr and the OVOS onnx-asr STT plugin.
import onnx_asr
model = onnx_asr.load_model("OpenVoiceOS/misterkissi-whisper-small-lomwe-onnx")
print(model.recognize("test.wav"))
Or with the OVOS plugin:
from ovos_stt_plugin_onnx_asr import OnnxASRSTT
stt = OnnxASRSTT(config={"model": "OpenVoiceOS/misterkissi-whisper-small-lomwe-onnx"})
$ export FORCE_ONNX_EXTERNAL_DATA=1
$ optimum-cli export onnx --task automatic-speech-recognition-with-past --model misterkissi/whisper-small-lomwe whisper-onnx
$ cd whisper-onnx && rm decoder.onnx* decoder_with_past_model.onnx* # only the merged decoder is needed
CC BY-NC-SA 4.0, inherited from the source model misterkissi/whisper-small-lomwe.
Base model
openai/whisper-small