Views
No views yet
.oasr packs run with no Python at inference, engineered for peak performance on CPU & GPU1# 1. Install the OpenASR CLI · https://openasr.org
2# 2. Pull a build (pick a quant — see the table below)
3openasr pull qwen3-asr-0.6b:q8
4
5# 3. Transcribe
6openasr transcribe audio.wav --model qwen3-asr-0.6b1openasr pull qwen3-asr-0.6b:fp16
2openasr pull qwen3-asr-0.6b:q8
3openasr pull qwen3-asr-0.6b:q4| Quant | File (.oasr) | Size | RAM peak | RTF · M1 CPU | RTF · M1 GPU | JFK ΔWER vs fp16 |
|---|---|---|---|---|---|---|
| fp16 | qwen3-asr-0.6b-fp16.oasr | 1.88 GB | 4.51 GB | 0.58× | 0.41× | 0.0% |
| q8_0 | qwen3-asr-0.6b-q8_0.oasr | 1.01 GB | 2.86 GB | 0.55× | 0.27× | 0.0% |
| q4_k | qwen3-asr-0.6b-q4_k.oasr | 631 MB | 3.54 GB | n/a | n/a | n/a |
.oasr packs that run natively in
the OpenASR runtime — no Python at inference time. The q8_0 build is the recommended default
(near-reference accuracy at roughly half the footprint); q4_k suits tight-memory devices and
fp16 is for verification or maximum fidelity. For word-level timestamps, pair it upstream with
Qwen3-ForcedAligner-0.6B.1openasr model-pack import qwen <src> <out>.oasr \
2 --package-id qwen3-asr-0.6b --quantization {fp16,q8-0,q4-k}.oasr container is GGUF-backed; packs use zero-copy mmap weight binding and graph
buffer reuse to keep peak memory low.