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 whisper-base:q8
4
5# 3. Transcribe
6openasr transcribe audio.wav --model whisper-base1openasr pull whisper-base:fp16
2openasr pull whisper-base:q8
3openasr pull whisper-base:q4| Quant | File (.oasr) | Size | RAM peak | RTF · M1 CPU | RTF · M1 GPU | JFK ΔWER vs fp16 |
|---|---|---|---|---|---|---|
| fp16 | whisper-base-fp16.oasr | 149 MB | 542 MB | 0.08× | 0.06× | 0.0% |
| q8_0 | whisper-base-q8_0.oasr | 108 MB | 405 MB | 0.07× | 0.06× | 0.0% |
| q4_k | whisper-base-q4_k.oasr | 95 MB | 374 MB | n/a | n/a | n/a |
openai/whisper-base weights as .oasr
packs that run natively in the OpenASR runtime with no Python at inference time. For most users
the q8_0 build is the recommended default; q4_k is for tighter memory budgets and fp16 is for
verification or maximum fidelity.1openasr model-pack import whisper <src> <out>.oasr \
2 --package-id whisper-base --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..oasr packages and adds quantized builds for local runtime use.