Downloads · 30 days
12
29% of all-time downloads
OpenVoiceOS/moonshine-tiny-onnx
moonshine-tiny-onnx is a automatic speech recognition model from OpenVoiceOS. Use it when you need speech turned into text. It is set up for onnx-asr. The card lists the license as mit.
Moonshine Tiny is a compact English speech-to-text model from Useful Sensors. It is an encoder-decoder model that reads the raw 16 kHz waveform, so it needs no log-mel preprocessor.
Downloads · 30 days
12
29% of all-time downloads
All-time downloads
41
Public
Repo size
464 MB
Likes
0
Public
Click a slice to open those files.
.onnx464 MB · 99%
From the Hugging Face model README
Moonshine Tiny is a compact English speech-to-text model from Useful Sensors. It is an encoder-decoder model that reads the raw 16 kHz waveform, so it needs no log-mel preprocessor.
This repository is a mirror of the official ONNX export onnx-community/moonshine-tiny-ONNX, kept so that the OpenVoiceOS ONNX ASR collection is self-contained. The weights are unchanged.
import onnx_asr
model = onnx_asr.load_model("moonshine-tiny")
print(model.recognize("test.wav"))
Quantized variants load with the quantization argument:
model = onnx_asr.load_model("moonshine-tiny", quantization="quantized")
Model by Useful Sensors Inc., released under the MIT license. Paper: Moonshine: Speech Recognition for Live Transcription and Voice Commands. ONNX export by onnx-community.
MIT