Model reference · open weights

qwen3-asr-onnx

Available as managed deployment Audio rhasspy Speech→text 1 variants 100 dl/mo

qwen3-asr-onnx is an open-weight audio or speech model from rhasspy. AxForge deploys and operates it for you on dedicated EU-owned hardware — with the licence handled where one is required.

Available as managed deployment — configured and operated for you on dedicated EU hardware, quoted per deployment.

What it is

Makerrhasspy
TypeAudio & music
TaskSpeech→text
Runs withonnxruntime
Based onandrewleech/qwen3-asr-0.6b-onnx
Released2026-08-12
Popularity100 downloads / month
LicenceOpen weights

About

What qwen3-asr-onnx is

andrewleech/qwen3-asr-0.6b-onnx with the audio encoder requantized to int4. The decoders, embedding table, config, and tokenizer are that repo's published int4 files, unchanged.

Ultimately derived from Qwen/Qwen3-ASR-0.6B. Apache-2.0 throughout.

Why

The upstream repo's encoder.int4.onnx is misleadingly named: it holds FP32 weights (746 MB). Quantizing it for real shrinks the package, and on ARM it cuts latency too.

upstreamthis
encoder746 MB (FP32)121 MB (int4)
total on disk2.0 GB1.4 GB
Raspberry Pi 5, 3.5 s utterance, 4 threads1.577 s1.36–1.49 s
Ryzen 9 5950X, 3.5 s utterance, 16 threads0.408 s0.411 s
Pi 5 peak RSS, short utterance1.7 GB

The encoder is compute-bound, so the speedup is ARM-only; on x86 this is purely a memory saving. Transcripts matched the FP32 encoder on 9 of 10 Home Assistant test clips — the tenth was an entity name both get wrong without a context prompt and both get right with one.

Files

FileDescription
encoder.int4.onnx (+ .data)Audio encoder, int4 MatMulNBits
decoder_init.int4.onnxDecoder prefill; takes input_ids, emits logits + KV cache
decoder_step.int4.onnxAutoregressive step; takes input_embeds + KV cache
decoder_weights.int4.dataShared external weights for both decoders
embed_tokens.binToken embeddings [151936, 1024], float16
config.json, tokenizer.jsonArchitecture config, special tokens, mel params, tokenizer

Keep embed_tokens.bin in fp16 and cast one row per generated token; casting the whole table at load costs ~300 MB of RSS for nothing.

Inference

  1. Log-mel spectrogram (Whisper parameters: 16 kHz, 128 bins, n_fft 400, hop 160, Hann, Slaney mel, 0–8 kHz)
  2. encoder.int4.onnx → audio features
  3. Build prompt ids, then decoder_init.int4.onnx with input_ids, position_ids, audio_features, audio_offset
  4. Greedy loop on decoder_step.int4.onnx until or
  5. Drop everything up to and including `` (the language preamble)

The prompt is the Qwen chat template:

Note the token ids for the words system and user are 8948 and 872. The upstream reference src/prompt.py hardcodes 9125 and 882, which decode to " Current" and " time".

Context biasing

Free-form text in the system turn biases decoding toward specific spellings — useful for smart-home entity names:

system: Vocabulary: Ecobee, office lamp.

"What's the temperature of the incubator?" → "What's the temperature of the Ecobee?"

Verified clean with a 77-token entity list: no dropped outputs, no prompt echo. (The int8 export at OpenVoiceOS/qwen3-asr-0.6b-onnx degenerates under the same load — empty output, or echoing the vocabulary list back as the transcript. int4 MatMulNBits' per-group scales handle the decoder's outlier weights that per-tensor int8 does not.)

Reproducing the encoder

import onnx
from onnxruntime.quantization.matmul_nbits_quantizer import (
    MatMulNBitsQuantizer, RTNWeightOnlyQuantConfig)
from onnxruntime.quantization.quant_utils import QuantFormat

q = MatMulNBitsQuantizer(
    model=onnx.load("encoder.int4.onnx"),   # the FP32-weighted file from upstream
    block_size=64, is_symmetric=False, accuracy_level=4,
    algo_config=RTNWeightOnlyQuantConfig(quant_format=QuantFormat.QOperator),
)
q.process()
q.model.save_model_to_file("encoder.int4.onnx", use_external_data_format=True)

block_size=64 / accuracy_level=4 match the recipe the decoders were built with. Don't change them casually — upstream measured block_size=32 at the same accuracy level producing 99.98% WER, and requantizing the decoder with these settings produced empty output on both x86 and ARM.

From the published model card. Full card on the HuggingFace links in the sidebar.

How it works

How audio & music work

Audio or textinputAudio modelrecognise / synthesiseText or audiooutputSpeech-to-text turns audio into text; text-to-speech and music models turn text into audio.

Using it via the API

Call it like any OpenAI endpoint

Once AxForge deploys qwen3-asr-onnx for you, it answers on the OpenAI-compatible API — the same base URL and keys as every other model. (qwen3-asr-onnx below is illustrative; you get the exact model name on deployment.)

$ curl -sS https://api.axforge.ai/v1/audio/transcriptions \
  -H "Authorization: Bearer $AXFORGE_API_KEY" \
  -F model="qwen3-asr-onnx" -F file=@audio.mp3

Create an account — your API key is available in the console. 5M tokens/month currently included with every new account at launch.

© 2026 AxForge · EU-hosted AI infrastructure Pricing Docs Trust Privacy Terms